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 the result set to include a description of the NAME field It causes the dataset returned by the query to be sorted in descending order 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 result set to include a description of the NAME field It causes the dataset returned by the query to be sorted in descending order 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 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 The URLs in the administrative links won’t mean anything to admin.php unless you modify _________ .urlaccess .htmlaccess .adminaccess .htaccess .urlaccess .htmlaccess .adminaccess .htaccess ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ index.php index.ini admin.php .htaccess index.php index.ini admin.php .htaccess ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which of the following DBMSs do not have a native PHP extension? PostgreSQL MySQL None of these IBM DB/2 Microsoft SQL Server PostgreSQL MySQL None of these IBM DB/2 Microsoft SQL Server ANSWER DOWNLOAD EXAMIANS APP
PHP Databases Handling Which method retrieves each row from the prepared statement result and assigns the fields to the bound results? fetch_row() fetch() row() get_row() fetch_row() fetch() row() get_row() ANSWER DOWNLOAD EXAMIANS APP