SQLDRAFT
9th grade
988 times
Computers
58%average accuracy
What does "SQL" stand for?
Which statement is used to extract data from a database?
If you were wanting to filter data, which clause would you use?
Using which word allows you to specify that more than one condition must be met in a query?
Using which word allows you to specify that only one of a series of conditions needs to be met in a query filter?
In order to amend data in a database we would use which SQL statement?
To remove a record from a table which SQL statement would you use?
Which statement allows us to add a record to a table?
Less than or equal to?
Which character returns all the data found in a table?
Which word is missing from the following SQL statement?
Select * table_name
What is the correct order of clauses in a SQL statement?
How do we select all rows for the "Designer" table?
How would we script a SQL query to select "Description" from the Item table?
Which query would return only the fields DesignerID and Designer?
You are required to update the phone number for only the DesignerID "SMI01" in the "Designer" table. Which of these would successfully do that?
With SQL how can I return all items in the Item table sorted from the lowest priced to the highest priced?
How would you DELETE records from the Items table with a "Chair" Type?
How would you display Chairs in the Items table that have a Price greater than £50.
Which SQL statement would add a record to the database?