Q.1.
Which of the following is not a date function?
Q.2.
MySQL is
Q.3.
Which type of database management system is MySQL?
Q.4.
What is the full form of SQL?
Q.5.
What will be the output of the following query:Select round(59999.99,-2);
Q.6.
Which of the following scripts will run successfully?
Q.7.
Which of the following can add a row to a table?
Q.8.
What will be returned by the given query? SELECT INSTR("INDIA", "DI");
Q.9.
What will be printed by the given query? SELECT LENGTH("WINNER");
Q.10.
What will be returned by the given query? SELECT round(153.2);
Q.11.
Which of the following is not a numeric function?
Q.12.
With SQL, how do you select all the columns from a table named "Persons"?
Q.13.
What will be returned by the given query? SELECT concat("It", "was", "ok");
Q.14.
Which of the following is not a relational operator?
Q.15.
In a LIKE clause, you can ask for any 6 letter value by writing
Q.16.
Which of the following is not a valid aggregate function?
Q.17.
Which of the following are valid column names?
Q.18.
What will be returned by the given query? SELECT month('2020-05-11');
Q.19.
What will be returned by the given query? SELECT sign(26);
Q.20.
Which of the following is not a text function?