Go Back   Wiki NewForum | Latest Entertainment News > Career Forum & Tips > Tech Forum & Tutorial > PHP Forum & Tutorial


PHP MySQL The Where Clause


Reply
Views: 3500  
Thread Tools Rate Thread
  #1  
Old 05-04-2009, 05:51 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 80,566
Default PHP MySQL The Where Clause

he WHERE clause is used to filter records. The WHERE clause

The WHERE clause is used to extract only those records that fulfill a specified criterion.
Syntax

SELECT column_name(s)
FROM table_name
WHERE column_name operator value



To learn more about SQL, please visit our SQL tutorial.


To get PHP to execute the statement above we must use the mysql_query() function. This function is used to send a query or command to a MySQL connection.
Example

The following example selects all rows from the "Persons" table where "FirstName='Peter':






$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("my_db", $con);

$result = mysql_query("SELECT * FROM Persons
WHERE FirstName='Peter'");

while($row = mysql_fetch_array($result))
{
echo $row['FirstName'] . " " . $row['LastName'];
echo "
";
}

?>



The output of the code above will be:
Peter Griffin

Reply With Quote
Reply

New topics in PHP Forum & Tutorial





Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
WikiNewForum)