我们知道从 MySQL 表中使用 SELECT 语句来查询和读取数据。如果是带有限定条件的查询,则应该使用 WHERE 从句。
以下是 SELECT 语句中使用 WHERE 子句从数据表中读取数据的语法:
SELECT field1, field2,...fieldN FROM table_name1, table_name2...
[WHERE condition1 [AND [OR]] condition2.....
以下为操作符列表,可用于 WHERE 子句中。
下表中实例假定 A 为 10, B 为 20
操作符 | 描述 | 实例 |
---|---|---|
= | 等号,检测两个值是否相等,如果相等返回true | (A = B) 返回false。 |
<>, != | 不等于,检测两个值是否相等,如果不相等返回true | (A != B) 返回 true。 |
> | 大于号,检测左边的值是否大于右边的值, 如果左边的值大于右边的值返回true | (A > B) 返回false。 |
< | 小于号,检测左边的值是否小于右边的值, 如果左边的值小于右边的值返回true | (A < B) 返回 true。 |
>= | 大于等于号,检测左边的值是否大于或等于右边的值, 如果左边的值大于或等于右边的值返回true | (A >= B) 返回false。 |
<= | 小于等于号,检测左边的值是否小于或等于右边的值, 如果左边的值小于或等于右边的值返回true | (A <= B) 返回 true。 |
如果我们想在 MySQL 数据表中读取指定的数据,WHERE 子句是非常有用的。
使用主键来作为 WHERE 子句的条件查询是非常快速的。
如果给定的条件在表中没有任何匹配的记录,那么查询不会返回任何数据。
我们将在SQL SELECT语句使用WHERE子句来读取MySQL数据表 shulanxt_tbl 中的数据:
以下实例将读取 shulanxt_tbl 表中 shulanxt_author 字段值为 Sanjay 的所有记录:
SELECT * from shulanxt_tbl WHERE shulanxt_author='树懒学堂';
MySQL 的 WHERE 子句的字符串比较是不区分大小写的。 你可以使用 BINARY 关键字来设定 WHERE 子句的字符串比较是区分大小写的。
mysql> SELECT * from shulanxt_tbl WHERE BINARY shulanxt_author='shulanxt.com';
Empty set (0.01 sec)
mysql> SELECT * from shulanxt_tbl WHERE BINARY shulanxt_author='shulanxt.COM';
+-----------+---------------+---------------+-----------------+
| shulanxt_id | shulanxt_title | shulanxt_author | submission_date |
+-----------+---------------+---------------+-----------------+
| 3 | JAVA 教程 | shulanxt.COM | 2016-05-06 |
| 4 | 学习 Python | shulanxt.COM | 2016-03-06 |
+-----------+---------------+---------------+-----------------+
2 rows in set (0.01 sec)
实例中使用了 BINARY 关键字,是区分大小写的,所以 shulanxt_author=’shulanxt.com’ 的查询条件是没有数据的。
你可以使用 PHP 函数的 mysqli_query() 及相同的 SQL SELECT 带上 WHERE 子句的命令来获取数据。
该函数用于执行 SQL 命令,然后通过 PHP 函数 mysqli_fetch_array() 来输出所有查询的数据。
以下实例将从 shulanxt_tbl 表中返回使用 shulanxt_author 字段值为 shulanxt.COM 的记录:
<?php
$dbhost = 'localhost:3306'; // mysql服务器主机地址
$dbuser = 'root'; // mysql用户名
$dbpass = '123456'; // mysql用户名密码
$conn = mysqli_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
die('连接失败: ' . mysqli_error($conn));
}
// 设置编码,防止中文乱码
mysqli_query($conn , "set names utf8");
// 读取 shulanxt_author 为 shulanxt.COM 的数据
$sql = 'SELECT shulanxt_id, shulanxt_title,
shulanxt_author, submission_date
FROM shulanxt_tbl
WHERE shulanxt_author="shulanxt.COM"';
mysqli_select_db( $conn, 'shulanxt' );
$retval = mysqli_query( $conn, $sql );
if(! $retval )
{
die('无法读取数据: ' . mysqli_error($conn));
}
echo '<h2>树懒学堂 MySQL WHERE 子句测试<h2>';
echo '<table border="1"><tr><td>教程 ID</td><td>标题</td><td>作者</td><td>提交日期</td></tr>';
while($row = mysqli_fetch_array($retval, MYSQLI_ASSOC))
{
echo "<tr><td> {$row['shulanxt_id']}</td> ".
"<td>{$row['shulanxt_title']} </td> ".
"<td>{$row['shulanxt_author']} </td> ".
"<td>{$row['submission_date']} </td> ".
"</tr>";
}
echo '</table>';
// 释放内存
mysqli_free_result($retval);
mysqli_close($conn);
?>
MySQL 使用 SELECT 命令及 WHERE 子句来读取数据表中的数据,但是当提供的查询条件字段为 NULL 时,该怎么处理呢? 详见《NULL值处理》。