PHP Databases Handling The ............. statement is used to delete a table. DEL TABLE DROP TABLE REMOVE TABLE DELETE TABLE DEL TABLE DROP TABLE REMOVE TABLE DELETE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling What will happen at the end of the following sequence of SQL commands?BEGIN TRANSACTIONDELETE FROM MYTABLE WHERE ID=1DELETE FROM OTHERTABLEROLLBACK TRANSACTION The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted The database will remain unchanged The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? DELETE TABLE REMOVE TABLE TRUNCATE TABLE DROP TABLE DELETE TABLE REMOVE TABLE TRUNCATE TABLE DROP TABLE ANSWER DOWNLOAD EXAMIANS APP