What are the query statements in PHP?

尊渡假赌尊渡假赌尊渡假赌
Release: 2023-06-05 16:18:51
Original
874 people have browsed it

There are three types of query statements in PHP: 1. SELECT statement, used to retrieve data from one or more data tables; 2. WHERE statement, used to filter the data in the data table specified in the FROM statement. Data under specific conditions; 3. ORDER BY statement, used to sort query results in a specific order (such as ascending or descending order).

What are the query statements in PHP?

Operating system for this tutorial: Windows 10 system, php8.1.3 version, Dell G3 computer.

The query statements in PHP are:

1. SELECT

The SELECT statement is used to retrieve data from one or more data tables.

The code is as follows:

$sql = "SELECT id, name, email FROM users";
$result = mysqli_query($conn, $sql);
// 循环遍历结果集
while ($row = mysqli_fetch_assoc($result)) {
    echo "ID: " . $row["id"] . " - Name: " . $row["name"] . " - Email: " . $row["email"] . "<br>";
}
Copy after login

This code selects the three fields id, name and email from the data table named "users" and stores the results in a file named in the variable $result. Subsequently, use the mysqli_fetch_assoc() function to obtain each row of data from the result set $result, and then output the corresponding id, name, and email values.

2. WHERE

The WHERE clause is used to filter data that meets specific conditions in the data table specified in the FROM statement.

$sql = "SELECT id, name, email FROM users WHERE age > 18";
$result = mysqli_query($conn, $sql);
// 循环遍历结果集
while ($row = mysqli_fetch_assoc($result)) {
    echo "ID: " . $row["id"] . " - Name: " . $row["name"] . " - Email: " . $row["email"] . "<br>";
}
Copy after login

This code selects the three fields id, name and email from the data table named "users" and adds a WHERE clause to filter age Users greater than 18. Subsequently, use the mysqli_fetch_assoc() function to obtain each row of data from the result set $result, and then output the corresponding id, name, and email values.

3. ORDER BY

The ORDER BY clause is used to sort query results in a specific order (such as ascending or descending order).

$sql = "SELECT name, age FROM users ORDER BY
Copy after login

The above is the detailed content of What are the query statements in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!