Module quiz: Create, Read, Update and Delete (CRUD) Operations
The following SQL clause creates a table named staff within a database:
CREATE staff TABLE;
False
True
The following SQL statement creates a table named staff, with two columns called name and address:
CREATE TABLE staff (name VARCHAR(100), ad...