PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? REMOVE TABLE TRUNCATE TABLE DROP TABLE DELETE TABLE REMOVE TABLE TRUNCATE TABLE DROP TABLE DELETE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method returns the error code generated from the execution of the last MySQL function? errornumber() errorno() errno() errnumber() errornumber() errorno() errno() errnumber() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Your confirmation form submits your choice, via the _______ method, to ________ GET index.php POST index.php POST admin.php GET admin.php GET index.php POST index.php POST admin.php GET admin.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following is not an SQL aggregate function? SUM AVG CURRENT_DATE() MIN MAX SUM AVG CURRENT_DATE() MIN MAX ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling What does the DESC keyword do in the following query?SELECT * FROM MY_TABLE WHERE ID > 0 ORDER BY ID, NAME DESC It causes the dataset returned by the query to be sorted in descending order It causes rows with the same ID to be sorted by NAME in ascending order It causes rows with the same ID to be sorted by NAME in descending order It causes the result set to include a description of the NAME field It causes the dataset returned by the query to be sorted in descending order It causes rows with the same ID to be sorted by NAME in ascending order It causes rows with the same ID to be sorted by NAME in descending order It causes the result set to include a description of the NAME field ANSWER DOWNLOAD EXAMIANS APP