Re: Untitled

From Sweltering Shama, 5 Months ago, written in Plain Text, viewed 92 times. This paste is a reply to Untitled from Forensic Cat - view diff
URL http://codebin.org/view/4dc16725 Embed
Download Paste or View Raw
  1. SELECT billing_country,
  2.        billing_postal_code
  3.        -- укажите нужные поля
  4. FROM invoice
  5. WHERE billing_address NOT IN ('Street', 'Way', 'Road', 'Drive')
  6.       AND billing_postal_code IS NULL
  7.       -- пропишите условие
  8. GROUP BY billing_country
  9.          
  10. --HAVING COUNT(billing_postal_code) > 10 -- пропишите условие;

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Silly Zebra text 4 Months ago.

Reply to "Re: Untitled"

Here you can reply to the paste above