MySQLi Where

MySQLi WHERE Clause is used to filter the results.

Below the syntax of WHERE Clause

SELECT expressions FROM table_name [WHERE Clause]
<?php
$conn  = mysqli_connect('localhost:3306', 'user_name', 'password', 'db_nexladder');
 if(! $conn) {
     die('Could not connect: ' . mysqli_error());
 }
$sql = "SELECT `first_name`, `last_name` FROM `tbl_customers` WHERE `first_name` = 'Gulshan'";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) 
  {
    while($row = mysqli_fetch_object($result)) {
        echo "Name: " . $row->first_name. "<br />";
     }
  } else {
     echo "0 rows";
}
 mysqli_close($conn);
?>

Consider a table "tbl_customers", having the following data:

mysql insert data

Below the mysqli query with WHERE clause, It'll look like this:

mysql where