Mysql select statements


Question:

MySQL SELECT Statements

Write SELECT statements for the following questions. Make sure to include the statement execution, including the resulting data.

Display all columns and all rows from the Employees table.
9 rows returned
Display the regionid, regiondescription for all rows in the Regions table.
4 rows returned
Modify query 2 so that the column headings are as follows:
"ID" and "Description"
4 rows returned
Display the customer ID, customer name, and region for all customers.
91 rows returned
Display the customer ID, customer name, and region for all customers.
Name the columns "ID," "Name," and "Region" (respectively), and sort the data by the company name.
91 rows returned

So far from my experience this is what I have come up for as what a Select Statement sort of contains, I could be wrong.

The syntax would be SELECT [column] FROM [table]
So let's say I was selecting a column called "Birthday" from a table named "People" , it would be :
SELECT Birthday
FROM People
with multiple columns, you need to use a comma
EXAMPLE:
SELECT, first_name, Birthday
FROM People

Solution Preview :

Prepared by a verified Expert
Other Subject: Mysql select statements
Reference No:- TGS01936781

Now Priced at $20 (50% Discount)

Recommended (99%)

Rated (4.3/5)