在 PHP 中,使用 WHERE 子句时可以通过 OR 连接多个条件。下面是一个示例:
// 假设有一个数据库连接 $conn // 查询名为 John 或名为 Jane 的用户 $sql = "SELECT * FROM users WHERE name = 'John' OR name = 'Jane'"; $result = mysqli_query($conn, $sql); if (mysqli_num_rows($result) > 0) { while ($row = mysqli_fetch_assoc($result)) { echo "Name: " . $row['name'] . "
"; } } else { echo "No results found"; }
在上面的示例中,WHERE 子句连接了两个条件,即 name 为 ‘John’ 或 name 为 ‘Jane’。查询结果将返回所有名为 John 或 Jane 的用户信息。