Quiz
Quiz
SELECT
UPDATE
Which SQL statement is used to delete data from a database? DELETE
Which SQL statement is used to insert new data in a database? INSERT INTO
With SQL, how do you select a column named "FirstName" from a table named "Persons"?
With SQL, how do you select all the records from a table named "Persons" where the value
of the column "FirstName" starts with an "a"?
The OR operator displays a record if ANY conditions listed are true. The AND operator
displays a record if ALL of the conditions listed are true
True
With SQL, how do you select all the records from a table named "Persons" where the
"FirstName" is "Peter" and the "LastName" is "Jackson"?
ORDER BY
With SQL, how can you return all the records from a table named "Persons" sorted
descending by "FirstName"?
INNER JOIN
BETWEEN
The NOT NULL constraint enforces a column to not accept NULL values.
True
Which operator is used to search for a specified pattern in a column?
LIKE
Which SQL statement is used to create a database table called 'Customers'?