Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

joining tables in sql

SELECT orders.order_Number, customers.First_Name, customers.Last_Name, customers.Address
FROM orders
INNER JOIN Customers ON orders.customers_id=customers.id;
Source by www.techonthenet.com #
 
PREVIOUS NEXT
Tagged: #joining #tables #sql
ADD COMMENT
Topic
Name
5+3 =