Which of the following ways below are the correct way to get the current date? September 2, 2021September 2, 2021 administrator Which of the following ways below are the correct way to get the current date?All options are correctWell Done. Your Answer is Correct Keep it Up! SELECT CURTIME();SELECT CURDATE();SLELCT CURRRENT_TIME()
In a SELECT with a GROUP BY clause, a WHERE clause, and a HAVING clause, the WHERE conditions are applied before the HAVING conditions. September 2, 2021September 2, 2021 administrator In a SELECT with a GROUP BY clause, a WHERE clause, and a HAVING clause, the WHERE conditions are applied before the HAVING conditions. TRUEWell Done. Your Answer is Correct Keep it Up!FALSE
Primary Key does allow the Null Values. where as in Unique key doesn’t accept the Null values. September 2, 2021September 2, 2021 administrator Primary Key does allow the Null Values. where as in Unique key doesn’t accept the Null values. FALSEWell Done. Your Answer is Correct Keep it Up!TRUE
Which of the following is used to delete an entire MYSQL database? September 2, 2021September 2, 2021 administrator Which of the following is used to delete an entire MYSQL database?mysql_drop_dbWell Done. Your Answer is Correct Keep it Up!mysql_drop_entiredbmysql_drop_databaseNone of the options are correct
In PHP in order to access MySQL database you will use: September 2, 2021September 2, 2021 administrator In PHP in order to access MySQL database you will use: mysql_connect() functionWell Done. Your Answer is Correct Keep it Up!sql_connect() functionmysql-connect() functionmysqlconnect() function
To remove duplicate rows from the result set of a SELECT use the following keyword: September 2, 2021September 2, 2021 administrator To remove duplicate rows from the result set of a SELECT use the following keyword: DISTINCTWell Done. Your Answer is Correct Keep it Up!UNIQUENO DUPLICATENone of the options are correct
What’s the difference between the DESCRIBE and SHOW FIELDS FROM commands? September 2, 2021September 2, 2021 administrator What’s the difference between the DESCRIBE and SHOW FIELDS FROM commands?Nothing – they’re the same thingWell Done. Your Answer is Correct Keep it Up!Only DESCRIBE can take a LIKE clauseOnly SHOW FIELDS FROM can take a LIKE clauseNone of the options are correct
Which of these field types would be best to hold a .jpg image? September 2, 2021September 2, 2021 administrator Which of these field types would be best to hold a .jpg image?blobWell Done. Your Answer is Correct Keep it Up!textnchar binarychar binary
Which of the following is available in MySQL: September 2, 2021September 2, 2021 administrator Which of the following is available in MySQL:CREATE DATABASEWell Done. Your Answer is Correct Keep it Up!CREATE TRIGGERCREATE SCHEMACREATE VIEW
In a LIKE clause, you can ask for any 6 letter value by writing: September 2, 2021September 2, 2021 administrator In a LIKE clause, you can ask for any 6 letter value by writing:LIKE ______ (that’s six underscore characters)Well Done. Your Answer is Correct Keep it Up!LIKE .{6}LIKE ^.{6}$LIKE …… (that’s six dots)