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 methods can be used to diagnose and display information about a MySQL connection error? connect_error() mysqli_connect_errno() connect_errno() mysqli_connect_error() connect_error() mysqli_connect_errno() connect_errno() mysqli_connect_error() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling The ............. statement is used to delete a table. DELETE TABLE DEL TABLE REMOVE TABLE DROP TABLE DELETE TABLE DEL TABLE REMOVE TABLE DROP TABLE ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Transactions are used to treat sets of SQL statements atomically. True False True False ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements is used to create a table? CREATE table_name (column_name column_type); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_type column_name); 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, as will be all the contents of MYTABLE whose ID is 1 The database will remain unchanged The contents of OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE 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 OTHERTABLE will be deleted The contents of both OTHERTABLE and MYTABLE will be deleted ANSWER DOWNLOAD EXAMIANS APP