Mysql Basic
- What is the meaning of “EMPTY SET” in the following query?
SELECT First_name, Last_name, Emp_id
FROM Employee
WHERE Last_name=’Gupta’;
/* after Execution*/ Mysql tool RETURN EMPTY SET 0:00sec
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
“EMPTY SET” means there were no values stored in the structure that belongs to lname.
- Which of the following is more efficient?
LOAD DATA, INSERT
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
In MySQL, the ‘LOAD DATA’ in all forms is more efficient than the ‘INSERT’ because it loads rows in bulk. The server first parses then interprets only one statement instead of many.
- The function used to convert a string to an int is ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
In MySQL, the function used to convert a string to an integer is INET_ATON(). On the other hand, the function INET_NTOA() converts a string to the corresponding integer value.
- The function used to convert an int to string is ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
In MySQL, the function used to convert an integer to a string is INET_NTOA(). On the other hand, the function INET_ATON() converts a string to the corresponding integer value.
- What is used to perform analysis of key values by the server?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
In MySQL, for the MyISAM and InnoDB tables, the server can be told to perform an analysis of key values by issuing the ANALYZE TABLE statement. It helps in knowing about query optimization.