Re: SQL WHERE

From Beige Kitten, 4 Months ago, written in Plain Text, viewed 90 times. This paste is a reply to SQL WHERE from Konstantin - view diff
URL http://codebin.org/view/a0f4b64b Embed
Download Paste or View Raw
  1. SELECT total,
  2.        customer_id
  3. FROM invoice
  4. WHERE billing_city  = 'Dublin'
  5.    OR billing_city  = 'London'
  6.    OR billing_city  = 'Paris'
  7.    AND total >= 5
  8.    AND customer_id = 40
  9.    OR customer_id = 46;-- сюда запишите условия;

Reply to "Re: SQL WHERE"

Here you can reply to the paste above