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
⇒ Managing Tables and Running Queries with PHP for MySQL
⇐ Selecting Other User's Database in MySQL
2017-10-23, 1533🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
How To Run SQL Commands in SQL*Plus in Oracle? If you want to run a SQL command in SQL*Plus, you nee...
What is dba.FYIcenter.com Website about? dba.FYIcenter.com is a Website for DBAs (database administr...
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...