November 2018
Beginner
304 pages
7h 35m
English
To query a table using SQL, you simply tell the database what it is you're trying to do. If you want to get a list of the customers or a list of orders in the system, just select what parts of the table you want to get.
Returning data with SQL is shown in following snippet:
SELECT * FROM Customers
The command simply pulls everything from Customers_table and prints it. The printed results may be textual or have grid lines, depending on the environment you are using, but the information will all be there.
You ...
Read now
Unlock full access