View Single Post

   
  #1 (permalink)  
Old 02-28-2008, 09:51 AM
Syl
 
Posts: n/a
Default two statments - same result ????

Hello! Can someone verify this for me please.

Should these 2 statments return the same result ? The 2nd one is the
original, the first one is my re-write. Thanks :

SELECT orders_status, paypalipn_txn . *
FROM orders
INNER JOIN paypalipn_txn ON item_number = orders_id
WHERE customers_id = 4417
ORDER BY date_purchased DESC LIMIT 1

and :

SELECT o.orders_status,p.*
FROM orders o
LEFT JOIN paypalipn_txn p on p.item_number = o.orders_id
AND o.customers_id = 4417 order by o.date_purchased desc limit 1

Reply With Quote