The ……………function parses an english textual date or time into a unix timestamp
…………….formats a local time or date according to locale settings
Which of the following DBMSs do not have a native PHP extension
In PHP in order to access MYSQL database you will use
Transactions are used to treat sets of SQL statements automatically
SQL IS not case sensitive.SELECT is the same as select
which of the following is not an SQL aggregate function
What does DESC keyword do in the following entry SELECT * FROM MY_TABLE WHERE ID > 0 ORDER BY ID,NAME DESC
The …………….statement is used to delete a table
What will happen at the end of the following sequence of SQL commands BEGIN TRANSACTIONS DELETE FROM MYTABLE WHEREID=1 DELETE FROM OTHER TABLE ROLLBACK TRANSACTION