Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^3: (OT) Why SQL Sucks (with a little Perl to fix it)

by dragonchild (Archbishop)
on Dec 11, 2005 at 19:40 UTC ( [id://515891]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    SELECT cities.name
    FROM   cities, customers
    WHERE  customers.city_id = cities.city_id
      AND  customers.credit_rating > 700
    
  2. or download this
    SELECT (cities.name)
      FROM (customers JOIN cities USING (city_id))
     WHERE (customers.credit_rating > 700)
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://515891]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (3)
As of 2024-04-20 01:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found