Mysql Basic
- Select the sequence for how the query mechanism works?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
When we execute any query, the first step is authentication (password). Second step for data definition mechanism, Third step is for Data Manipulation and the last is optimizer for efficient execution.
- The users responsible for query processing in database system are
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
Sophisticated users interact with the system without writing any application programs; they form the request in a database query language.
- Which are the two languages used in Mysql?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
DDL (Data Definition Language)
DML (Data Manipulation Language).
- Without LOCAL, LOAD DATA is _________________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
LOAD DATA is more efficient without LOCAL. Without LOCAL, the file must be located on the server. The FILE privilege must be given. The server can read the file directly from disk.
- What jobs “Query Optimizer” perform in Mysql?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
Query optimizer is used to find the efficient way to execute a query in Mysql.