CSE MCQs :: MySQL Database MCQs
- What is the meaning of "Temporary Tables in Mysql?
- What will be the output of the following statement "false AND Null?
- "COUNT keyword belongs to which categories in Mysql?
-
If emp_id contain the following set {-1, -2, 2, 3, -3, 1}, what will be the output on execution of the given query?SELECT emp_idFROM personORDER BY emp_id;
-
If emp_id contain the following set {9, 7, 6, 4, 3, 1, 2}, what will be the output on execution of the given query?SELECT emp_idFROM personORDER BY emp_id DESC;
-
Is there any error in the following query?SELECT emp_id, title, start_date, fname, fed_idFROM personORDER BY RIGHT (fed_id, 3);
-
What will be the output of a query given below?SELECT person_id, Fname, lnameFROM person;
-
What will be the result of the query given below?SELECT emp_id,'ACTIVE' AS STATUS,emp_id * 3.14 AS emp_pi,UPPER (lname) AS last_nameFROM employee;