PHP Databases Handling Which of the following is not an SQL aggregate function? SUM MIN CURRENT_DATE() MAX AVG SUM MIN CURRENT_DATE() MAX AVG 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 OTHERTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The database will remain unchanged The contents of both OTHERTABLE and MYTABLE will be deleted The contents of OTHERTABLE will be deleted The contents of OTHERTABLE will be deleted, as will be all the contents of MYTABLE whose ID is 1 The database will remain unchanged The contents of both OTHERTABLE and MYTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements instantiates the mysqli class? $mysqli = new mysqli() $mysqli->new.mysqli() mysqli->new.mysqli() mysqli = new mysqli() $mysqli = new mysqli() $mysqli->new.mysqli() mysqli->new.mysqli() mysqli = new mysqli() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Your confirmation form submits your choice, via the _______ method, to ________ POST index.php GET admin.php POST admin.php GET index.php POST index.php GET admin.php POST admin.php GET index.php ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? REMOVE TABLE DROP TABLE DELETE TABLE TRUNCATE TABLE REMOVE TABLE DROP TABLE DELETE TABLE TRUNCATE TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements should be used to include a file? #include ; include ‘filename’; #include ‘filename’; @include ‘filename’; #include ; include ‘filename’; #include ‘filename’; @include ‘filename’; ANSWER DOWNLOAD EXAMIANS APP