Try this exercise. Click the correct answer from the options.
You want to create a table called artists. Fill in the blank
TEXT/X-SQL
1______________ artists(
2 artist_id CHAR(3),
3 artist_name VARCHAR (80),
4 PRIMARY KEY (artist_id ));
Click the option that best answers the question.
- CREATE TABLE
- CREATE VIEW
- CREATE INDEX
- CREATE PROCEDURE