PHP Databases Handling Which method retrieves each row from the prepared statement result and assigns the fields to the bound results? get_row() row() fetch() fetch_row() get_row() row() fetch() fetch_row() 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? affected_rows() num_rows() new_rows() changed_rows() affected_rows() num_rows() new_rows() changed_rows() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling SQL is not case sensitive. SELECT is the same as select. True False True False ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following methods is used to execute the statement after the parameters have been bound? bind_param() bound_result() bound_param() bind_result() bind_param() bound_result() bound_param() bind_result() ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following is not an SQL aggregate function? AVG MAX SUM MIN CURRENT_DATE() AVG MAX SUM MIN CURRENT_DATE() 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 rows with the same ID to be sorted by NAME in ascending order It causes the dataset returned by the query to be sorted in descending order It causes the result set to include a description of the NAME field It causes rows with the same ID to be sorted by NAME in descending order It causes rows with the same ID to be sorted by NAME in ascending order It causes the dataset returned by the query to be sorted in descending order It causes the result set to include a description of the NAME field It causes rows with the same ID to be sorted by NAME in descending order ANSWER DOWNLOAD EXAMIANS APP