Untitled

From Edgy Curlew, 10 Months ago, written in Plain Text, viewed 132 times.
URL http://codebin.org/view/fca96839 Embed
Download Paste or View Raw
  1. SELECT billing_address,
  2.        billing_city,
  3.        CAST (invoice_date AS date)
  4. FROM invoice
  5. WHERE NOT (billing_country = 'USA'
  6. AND NOT billing_country = 'Brazil')
  7. AND total > 2
  8. AND invoice_date = '2009-09';

Reply to "Untitled"

Here you can reply to the paste above