67) The SQL query data results are displayed ________.
A) in the Navigator window
B) in a tabbed Result Grid
C) in a Messages window
D) in a tabbed Action Output window
68) MySQL indexes can be created by using ________.
A) the MySQL Table Editor
B) the MySQL Index Editor
C) an SQL statement
D) Both A and C are correct
69) To create a MySQL index using SQL, the correct SQL statement is ________.
A) ALTER TABLE {TableName} ADD INDEX {IndexName}
B) ALTER TABLE {TableName} INSERT INDEX {IndexName}
C) CREATE INDEX {IndexName} ON TABLE {TableName}
D) Both A and C are correct
70) To insert non-sequential data into a MySQL table that uses AUTO_INCREMENT,
________.
A) disable AUTO_INCREMENT
B) temporarily remove AUTO_INCREMENT
C) use the AUTO_INCREMENT_INSERT command
D) Both A and C are correct