Add to Chrome
Which of the following is NOT the correct of keywords for SQL ?
INSERT
DELETE
UPDATE
SELECT
QUERY
Which of the following is the correct order of keywords for SQL INSERT statements?
INSERTINTO table_name (field) VALUE (data)
INTO table_name (field) VALUE (data)
INSERT IN database_name (field) VALUE (data)
INSERT VALUE table_name (data) INTO (field)
INSERT IN table_name(field) VALUE (data)
Which of the following is the correct order of keywords for SQL SELECT statements?
SELECT ... ORDER BY ... GROUP BY
SELECT ... HAVING ... WHERE
SELECT ... FROM ... WHERE
SELECT ... WHERE ... FROM