Untitled

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

Reply to "Untitled"

Here you can reply to the paste above