All,

Can someone tell me what the purpose of line 2 is in the following example? It 
seems redundant to me since what is wanted from the Customers table is 
specified on line 1.


1: SELECT Customers.CustomerName, Orders.OrderID
2: FROM Customers
3: INNER JOIN Orders
4: ON Customers.CustomerID=Orders.CustomerID
5: ORDER BY Customers.CustomerName;

The above example was found here:

http://www.w3schools.com/sql/sql_join_inner.asp


Thanks,
--
Bill Drago
Senior Engineer

L3 Communications / Narda Microwave East
435 Moreland Road
Hauppauge, NY 11788
631-272-5947 / william.dr...@l-3com.com

CONFIDENTIALITY, EXPORT CONTROL AND DISCLAIMER NOTE:This e-mail and any 
attachments are solely for the use of the addressee and may contain information 
that is privileged or confidential. Any disclosure, use or distribution of the 
information contained herein is prohibited. In the event this e-mail contains 
technical data within the definition of the International Traffic in Arms 
Regulations or Export Administration Regulations, it is subject to the export 
control laws of the U.S.Government. The recipient should check this e-mail and 
any attachments for the presence of viruses as L-3 does not accept any 
liability associated with the transmission of this e-mail. If you have received 
this communication in error, please notify the sender by reply e-mail and 
immediately delete this message and any attachments.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to