I would like someone experienced with MYSQL to look over the 5 Statements and either help me with them or show me some insight on how to get started with 1-5. I will pay very good, I need to get this done within the next couple of days. I will purchase fg to pay for whatever it takes, i am desperate here. Thanks in advance, Brock101
Write SELECT statements for the following questions:
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 callled "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, Birtday
FROM People
Now I just need to put that knowledge to solve the 5 statements above, can anyone help me with this please ?
This post was edited by brock101 on Aug 12 2012 07:33pm