Collections:
Execute SQL Statements in MySQL
How To Execute a SQL Statement in MySQL?
✍: FYIcenter.com
You can run any types of SQL statements through the mysql_query() function. It takes the SQL statement as a string and returns different types of data depending on the SQL statement type and execution status:
Here is a good example of running a SQL statement with the mysql_query() function:
<?php include "mysql_connection.php"; $sql = 'SELECT SYSDATE() FROM DUAL'; $res = mysql_query($sql, $con); $row = mysql_fetch_array($res); print("Database current time: ". $row[0] ."\n"); mysql_close($con); ?>
If you run this script, you will get something like this:
Database current time: 2006-07-01 21:34:57
2017-10-23, 724👍, 0💬
Popular Posts:
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
What is Microsoft SQL Server in SQL Server? Microsoft SQL Server is a relational database management...
How To Create a View on an Existing Table in SQL Server? If you want to a view on an existing table,...
What Do You Need to Connect PHP to MySQL in MySQL? If you want to access MySQL database server in yo...