PHP Databases Handling Use the .............. to delete the data inside the table, and not the table itself? DROP TABLE TRUNCATE TABLE DELETE TABLE REMOVE TABLE DROP TABLE TRUNCATE TABLE DELETE TABLE REMOVE 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? mysqli_connect_error() connect_errno() mysqli_connect_errno() connect_error() mysqli_connect_error() connect_errno() mysqli_connect_errno() connect_error() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the methods are used to manage result sets using both associative and indexed arrays? fetch_array() and fetch_row() fetch_array() and fetch_column() get_array() and get_row() get_array() and get_column() fetch_array() and fetch_row() fetch_array() and fetch_column() get_array() and get_row() get_array() and get_column() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following method is used to retrieve the number of rows affected by an INSERT, UPDATE, or DELETE query? num_rows() changed_rows() affected_rows() new_rows() num_rows() changed_rows() affected_rows() new_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which one of the following statements is used to create a table? CREATE TABLE table_name (column_name column_type); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); CREATE table_name (column_type column_name); ANSWER DOWNLOAD EXAMIANS APP