March 4, 2015

DATABASE MANAGEMENT (SQL TUTORIAL)

http://www.w3schools.com/sql/trysql.asp?filename=trysql_select_all

>>> Run SQL:

Type this code:

SELECT Customers.CustomerID, Customers.CustomerName, Products.ProductName, Products.ProductID, Orders.OrderID From Customers, Products, Orders where Customers.CustomerID='58' and Orders.OrderID='10322' and Products.ProductID='77'

No comments: