Deck 12: Managing Databases With MySQL 55

Full screen (f)
exit full mode
Question
MySQL Community Edition requires that the .NET Framework version 2.0 be installed.
Use Space or
up arrow
down arrow
to flip the card.
Question
To run an SQL script,click the Execute SQL Script in Connected Server button on the MySQL Workbench.
Question
The MySQL Command Line Client is the MySQL command line utility.
Question
For use with this book,it is recommend that MySQL be configured as a developer machine.
Question
MySQL Community Edition uses operating system authentication.
Question
The MySQL Workbench is included in the MySQL Server Community Edition installation.
Question
MySQL is an open source DBMS that only runs on Unix and Linux operating systems.
Question
The MySQL Table Editor is accessible from the MySQL Workbench.
Question
It is recommend that MySQL be used with InnoDB storage engine.
Question
For use with this book,it is recommend that MySQL be configured as a Decision Support (DSS)/OLAP machine.
Question
Database objects are displayed in the Object Explorer window in the MySQL Workbench.
Question
MySQL is configured using the MySQL Server Instance Configuration Wizard.
Question
To start working with MySQL Community Edition use the command Start | All Programs | MySQL | MySQL Workbench CE 5.2.
Question
To run an SQL script,click the Execute button on the Query Toolbar.
Question
MySQL Workbench is the MySQL GUI application development utility.
Question
MySQL Workbench is the MySQL GUI database administration utility.
Question
Schema is the MySQL synonym for database.
Question
SQL statements can be run individually or as part of a related group of SQL statements known as a script.
Question
A new MySQL database is created using the New Database dialog box.
Question
Users log into MySQL Workbench using the Connect to Database and Connect to MySQL Server dialog boxes.
Question
The MySQL block structure defines variables with the BEGIN keyword.
Question
MySQL uses the MySQL NEW transition variable with triggers to access new data inserted into a table row.
Question
MySQL uses the MySQL CALL statement to run a stored procedure.
Question
MySQL concurrency options include four transaction isolation levels - READ UNCOMMITTED,READ COMMITTED,REPEATABLE READ,and SERIALIZABLE.
Question
MySQL supports INSTEAD OF triggers.
Question
The default transaction isolation level in MySQL is REPEATABLE READ.
Question
MySQL supports AFTER triggers.
Question
The MySQL statement BEGIN is used to define a set of MySQL procedure statements.
Question
The MySQL LOOP statement is used to repeat a set of SQL statements as long as some condition is true.
Question
MySQL uses the MySQL LAST_INSERT_ID()function to provide the value of the most recently created surrogate key.
Question
MySQL indexes can be created by using the GUI MySQL Table Editor or an SQL statement.
Question
In MySQL,surrogate keys that use a sequence maintained by MySQL should be given a data type of IDENTITY.
Question
The MySQL END statement is used to complete the basic SQL block structure.
Question
MySQL supports BEFORE triggers.
Question
The MySQL IF statement is used to test for a condition and then direct when blocks of code should be run depending on the outcome of the test.
Question
To execute an SQL query,click the Execute Current SQL Statement in Connected Server button.
Question
MySQL uses the MySQL TODAYS_DATE()function to provide the value of the current date.
Question
MySQL uses the Forbid UPDATE and DELETE statements without a WHERE clause (safe updates)checkbox to control the behavior of UPDATE and DELETE statements run from the MySQL Workbench.
Question
Triggers that have been created in MySQL are displayed as objects in the Object Browser of the MySQL Workbench.
Question
MySQL uses the MySQL OLD transition variable with triggers to access old data updated or deleted from a table row.
Question
The MySQL Workbench is the main utility used to implement MySQL security.
Question
MySQL uses the term data export dump as a synonym for backup.
Question
Logging into the MySQL DBMS is done using:

A)the Connect to Server command.
B)the Connect to Server dialog box.
C)the Connect to MySQL Server Instance command.
D)the Connect to MySQL Server Instance dialog box.
E)None of the above is correct.
Question
MySQL users are created on the Users and Privileges page in the MySQL Workbench.
Question
MySQL concurrency options include four scopes for the transaction isolation level - GLOBAL,LOCAL,SESSION and TRANSACTION.
Question
Which of the following MySQL configuration settings are recommend for use with this book?

A)Developer machine
B)Multifunction machine
C)Decision Support (DSS)/OLAP
D)A and B
E)A,B and C
Question
The MySQL Schema Privileges Select "ALL" button marks all MySQL privileges for assignment to the user.
Question
MySQL backups are run on the Export to Disk tab of the Data Export and Restore page.
Question
MySQL restores are run on the Restore from Disk tab of the Data Export and Restore page.
Question
The MySQL Installer for Windows requires the prior installation of:

A)the .NET Framework version 2.0.
B)the .NET Framework version 3.0.
C)the .NET Framework version 3.5 SP1.
D)the .NET Framework version 4.0.
E)None of the above - the .NET Framework is not required.
Question
DBMS objects are displayed:

A)in the Navigation Pane.
B)in the Object Browser.
C)in the tabbed database window.
D)in the tabbed document window.
E)in the command tab.
Question
MySQL backups that contain the entire database are run using the Export to Self-Contained File option.
Question
When MySQL Server Administration is opened in the MySQL Workbench,the Startup/Shutdown page is initially displayed.
Question
MySQL users should always be given the GRANT OPTION for each schema.
Question
MySQL users are granted MySQL privileges for specific schemas only.
Question
The MySQL transaction isolation level can be manually set using a MySQL SET {SCOPE} TRANSACTION ISOLATION LEVEL {LEVEL OPTION} command.
Question
The main MySQL GUI utility is:

A)MySQL Management Studio.
B)MySQL Developer.
C)My SQL Workbench.
D)A and B
E)A,B and C
Question
MySQL users must be granted the right to have MySQL schema privileges before the specific privileges themselves are granted.
Question
MySQL databases are backed up using the MySQL Backup System.
Question
MySQL users may be granted MySQL server administrative roles.
Question
A new MySQL database is created using:

A)the New Database dialog box.
B)the Create Database command.
C)the new_schema dialog box.
D)the Create Schema command.
E)the New Object dialog box.
Question
SQL query results are displayed:

A)in a tabbed Resultset window.
B)in a tabbed Results window.
C)in a tabbed Document window.
D)in a tabbed Messages window.
E)in a tabbed results window named the same as the window with the SQL code.
Question
The MySQL GUI tool(s)used for database administration and management is(are):

A)MySQL Workbench.
B)MySQL*Plus.
C)MySQL Command Shell.
D)A and B
E)A,B and C
Question
The MySQL statement used to test for a condition and then direct when blocks of code should be run depending on the outcome of the test is:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)REPEAT.
E)END.
Question
The MySQL block structure defines variables with the keyword:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)REPEAT.
E)END.
Question
The MySQL statement used to define a set of MySQL procedure statements is:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)REPEAT.
E)END.
Question
A default MySQL database is specified using:

A)the Set Schema command.
B)the Set Database command.
C)the Make Default Schema command.
D)the Set as Default Schema command.
E)the Set Schema dialog box.
Question
The MySQL statement used to repeat a set of SQL statements as long as some condition is true is:

A)DECLARE.
B)BEGIN.
C)IF...THEN.ELSE...END IF.
D)REPEAT.
E)END.
Question
The MySQL command line utility is:

A)MySQL*Plus.
B)the MySQL Command-Line Client.
C)MySQL-Shell.
D)MySQL-CMD.
E)None of the above is correct.
Question
The MySQL keyword used to retrieve a row of data while the cursor is operating is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Question
The MySQL delimiter that must be used with MySQL procedures as used in this text is:

A)/.
B)\.
C)//.
D)\\.
E)None of the above.
Question
The MySQL statement used to complete the basic SQL block structure is:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)LOOP.
E)END.
Question
The MySQL keyword to actually start using a cursor is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Question
To run a single SQL command in MySQL Community Edition:

A)click the Execute button in the MySQL Workbench.
B)click the Execute SQL in Connected Server button in the MySQL Workbench.
C)click the Execute SQL Script in Connected Server button in the MySQL Workbench.
D)click the Execute SQL Statement in Connected Server button in the MySQL Workbench.
E)click the Execute Current SQL Statement in Connected Server button in the MySQL Workbench.
Question
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)A or C
E)B or C
Question
The MySQL keyword to create a cursor is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Question
MySQL indexes can be created by using:

A)the MySQL Table Editor.
B)the MySQL Index Editor.
C)an SQL statement.
D)A and C
E)B and C
Question
SQL statements can be run individually or as part of a related group of SQL statements known as a:

A)Result.
B)Resultset.
C)Script.
D)Scriptset.
E)command set.
Question
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)A or C
E)B or C
Question
The MySQL keyword to close and exit a cursor is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 12: Managing Databases With MySQL 55
1
MySQL Community Edition requires that the .NET Framework version 2.0 be installed.
False
2
To run an SQL script,click the Execute SQL Script in Connected Server button on the MySQL Workbench.
True
3
The MySQL Command Line Client is the MySQL command line utility.
True
4
For use with this book,it is recommend that MySQL be configured as a developer machine.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
5
MySQL Community Edition uses operating system authentication.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
6
The MySQL Workbench is included in the MySQL Server Community Edition installation.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
7
MySQL is an open source DBMS that only runs on Unix and Linux operating systems.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
8
The MySQL Table Editor is accessible from the MySQL Workbench.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
9
It is recommend that MySQL be used with InnoDB storage engine.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
10
For use with this book,it is recommend that MySQL be configured as a Decision Support (DSS)/OLAP machine.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
11
Database objects are displayed in the Object Explorer window in the MySQL Workbench.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
12
MySQL is configured using the MySQL Server Instance Configuration Wizard.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
13
To start working with MySQL Community Edition use the command Start | All Programs | MySQL | MySQL Workbench CE 5.2.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
14
To run an SQL script,click the Execute button on the Query Toolbar.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
15
MySQL Workbench is the MySQL GUI application development utility.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
16
MySQL Workbench is the MySQL GUI database administration utility.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
17
Schema is the MySQL synonym for database.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
18
SQL statements can be run individually or as part of a related group of SQL statements known as a script.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
19
A new MySQL database is created using the New Database dialog box.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
20
Users log into MySQL Workbench using the Connect to Database and Connect to MySQL Server dialog boxes.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
21
The MySQL block structure defines variables with the BEGIN keyword.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
22
MySQL uses the MySQL NEW transition variable with triggers to access new data inserted into a table row.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
23
MySQL uses the MySQL CALL statement to run a stored procedure.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
24
MySQL concurrency options include four transaction isolation levels - READ UNCOMMITTED,READ COMMITTED,REPEATABLE READ,and SERIALIZABLE.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
25
MySQL supports INSTEAD OF triggers.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
26
The default transaction isolation level in MySQL is REPEATABLE READ.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
27
MySQL supports AFTER triggers.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
28
The MySQL statement BEGIN is used to define a set of MySQL procedure statements.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
29
The MySQL LOOP statement is used to repeat a set of SQL statements as long as some condition is true.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
30
MySQL uses the MySQL LAST_INSERT_ID()function to provide the value of the most recently created surrogate key.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
31
MySQL indexes can be created by using the GUI MySQL Table Editor or an SQL statement.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
32
In MySQL,surrogate keys that use a sequence maintained by MySQL should be given a data type of IDENTITY.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
33
The MySQL END statement is used to complete the basic SQL block structure.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
34
MySQL supports BEFORE triggers.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
35
The MySQL IF statement is used to test for a condition and then direct when blocks of code should be run depending on the outcome of the test.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
36
To execute an SQL query,click the Execute Current SQL Statement in Connected Server button.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
37
MySQL uses the MySQL TODAYS_DATE()function to provide the value of the current date.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
38
MySQL uses the Forbid UPDATE and DELETE statements without a WHERE clause (safe updates)checkbox to control the behavior of UPDATE and DELETE statements run from the MySQL Workbench.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
39
Triggers that have been created in MySQL are displayed as objects in the Object Browser of the MySQL Workbench.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
40
MySQL uses the MySQL OLD transition variable with triggers to access old data updated or deleted from a table row.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
41
The MySQL Workbench is the main utility used to implement MySQL security.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
42
MySQL uses the term data export dump as a synonym for backup.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
43
Logging into the MySQL DBMS is done using:

A)the Connect to Server command.
B)the Connect to Server dialog box.
C)the Connect to MySQL Server Instance command.
D)the Connect to MySQL Server Instance dialog box.
E)None of the above is correct.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
44
MySQL users are created on the Users and Privileges page in the MySQL Workbench.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
45
MySQL concurrency options include four scopes for the transaction isolation level - GLOBAL,LOCAL,SESSION and TRANSACTION.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
46
Which of the following MySQL configuration settings are recommend for use with this book?

A)Developer machine
B)Multifunction machine
C)Decision Support (DSS)/OLAP
D)A and B
E)A,B and C
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
47
The MySQL Schema Privileges Select "ALL" button marks all MySQL privileges for assignment to the user.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
48
MySQL backups are run on the Export to Disk tab of the Data Export and Restore page.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
49
MySQL restores are run on the Restore from Disk tab of the Data Export and Restore page.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
50
The MySQL Installer for Windows requires the prior installation of:

A)the .NET Framework version 2.0.
B)the .NET Framework version 3.0.
C)the .NET Framework version 3.5 SP1.
D)the .NET Framework version 4.0.
E)None of the above - the .NET Framework is not required.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
51
DBMS objects are displayed:

A)in the Navigation Pane.
B)in the Object Browser.
C)in the tabbed database window.
D)in the tabbed document window.
E)in the command tab.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
52
MySQL backups that contain the entire database are run using the Export to Self-Contained File option.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
53
When MySQL Server Administration is opened in the MySQL Workbench,the Startup/Shutdown page is initially displayed.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
54
MySQL users should always be given the GRANT OPTION for each schema.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
55
MySQL users are granted MySQL privileges for specific schemas only.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
56
The MySQL transaction isolation level can be manually set using a MySQL SET {SCOPE} TRANSACTION ISOLATION LEVEL {LEVEL OPTION} command.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
57
The main MySQL GUI utility is:

A)MySQL Management Studio.
B)MySQL Developer.
C)My SQL Workbench.
D)A and B
E)A,B and C
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
58
MySQL users must be granted the right to have MySQL schema privileges before the specific privileges themselves are granted.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
59
MySQL databases are backed up using the MySQL Backup System.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
60
MySQL users may be granted MySQL server administrative roles.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
61
A new MySQL database is created using:

A)the New Database dialog box.
B)the Create Database command.
C)the new_schema dialog box.
D)the Create Schema command.
E)the New Object dialog box.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
62
SQL query results are displayed:

A)in a tabbed Resultset window.
B)in a tabbed Results window.
C)in a tabbed Document window.
D)in a tabbed Messages window.
E)in a tabbed results window named the same as the window with the SQL code.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
63
The MySQL GUI tool(s)used for database administration and management is(are):

A)MySQL Workbench.
B)MySQL*Plus.
C)MySQL Command Shell.
D)A and B
E)A,B and C
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
64
The MySQL statement used to test for a condition and then direct when blocks of code should be run depending on the outcome of the test is:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)REPEAT.
E)END.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
65
The MySQL block structure defines variables with the keyword:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)REPEAT.
E)END.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
66
The MySQL statement used to define a set of MySQL procedure statements is:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)REPEAT.
E)END.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
67
A default MySQL database is specified using:

A)the Set Schema command.
B)the Set Database command.
C)the Make Default Schema command.
D)the Set as Default Schema command.
E)the Set Schema dialog box.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
68
The MySQL statement used to repeat a set of SQL statements as long as some condition is true is:

A)DECLARE.
B)BEGIN.
C)IF...THEN.ELSE...END IF.
D)REPEAT.
E)END.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
69
The MySQL command line utility is:

A)MySQL*Plus.
B)the MySQL Command-Line Client.
C)MySQL-Shell.
D)MySQL-CMD.
E)None of the above is correct.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
70
The MySQL keyword used to retrieve a row of data while the cursor is operating is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
71
The MySQL delimiter that must be used with MySQL procedures as used in this text is:

A)/.
B)\.
C)//.
D)\\.
E)None of the above.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
72
The MySQL statement used to complete the basic SQL block structure is:

A)DECLARE.
B)BEGIN.
C)IF...THEN...ELSE...END IF.
D)LOOP.
E)END.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
73
The MySQL keyword to actually start using a cursor is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
74
To run a single SQL command in MySQL Community Edition:

A)click the Execute button in the MySQL Workbench.
B)click the Execute SQL in Connected Server button in the MySQL Workbench.
C)click the Execute SQL Script in Connected Server button in the MySQL Workbench.
D)click the Execute SQL Statement in Connected Server button in the MySQL Workbench.
E)click the Execute Current SQL Statement in Connected Server button in the MySQL Workbench.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
75
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)A or C
E)B or C
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
76
The MySQL keyword to create a cursor is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
77
MySQL indexes can be created by using:

A)the MySQL Table Editor.
B)the MySQL Index Editor.
C)an SQL statement.
D)A and C
E)B and C
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
78
SQL statements can be run individually or as part of a related group of SQL statements known as a:

A)Result.
B)Resultset.
C)Script.
D)Scriptset.
E)command set.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
79
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)A or C
E)B or C
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
80
The MySQL keyword to close and exit a cursor is:

A)DECLARE CURSOR {CursorName}.
B)OPEN {CursorName}.
C)FETCH.
D)CLOSE {CursorName}.
E)None of the above.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 100 flashcards in this deck.