|
Home >> FAQs/Tutorials >> PHP Script Tutorials and Tips >> Index
PHP Tutorials - Running a SQL Statement
By: FYICenter.com
(Continued from previous topic...)
How To Run a SQL Statement?
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:
- Returning FALSE, if the execution failed.
- Returning a result set object, if the execution is successful on a SELECT statement or other statement returning multiple rows of data.
- Returning TRUE, if the execution is successful on other statements.
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';
$rs = mysql_query($sql, $con);
$row = mysql_fetch_array($rs);
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-02-26 21:34:57
(Continued on next topic...)
- How To Install MySQL Server?
- How To Use MySQL Command Line Interface?
- What Do You Need to Connect PHP to MySQL?
- How To Connect to MySQL from a PHP Script?
- How To Create a Database?
- How To Select an Exiting Database?
- How To Run a SQL Statement?
- How To Create a Table?
- How To Get the Number of Rows Selected or Affected by a SQL Statement?
- How To Insert Data into a Table?
- How To Insert Rows Based on SELECT Statements?
- What Is a Result Set Object?
- How To Query Tables and Loop through the Returning Rows?
- How To Update Existing Rows in a Table?
- How To Delete Existing Rows in a Table?
- How To Quote Text Values in SQL Statements?
- How To Quote Date and Time Values in SQL Statements?
- How To Perform Key Word Search in Tables?
- How To Query Multiple Tables Jointly?
- How To Set the ID Column as Auto-Incremented?
- How To Get the Last ID Assigned by MySQL?
|