Table of Contents
23 commonly used MySQL query statements, 23 commonly used MySQL statements
Home Backend Development PHP Tutorial 23 commonly used MySQL query statements, 23 commonly used MySQL statements_PHP tutorial

23 commonly used MySQL query statements, 23 commonly used MySQL statements_PHP tutorial

Jul 13, 2016 am 09:44 AM
mysql

23 commonly used MySQL query statements, 23 commonly used MySQL statements

One query for numerical data:
SELECT * FROM tb_name WHERE sum > 100;
Query predicate: >,=,<,<>,!=,!>,!<,=>,=<

Two query strings
SELECT * FROM tb_stu WHERE sname = 'Xiao Liu'
SELECT * FROM tb_stu WHERE sname like 'Liu%'
SELECT * FROM tb_stu WHERE sname like '%programmer'
SELECT * FROM tb_stu WHERE sname like '%PHP%'

Three queries for date type data
SELECT * FROM tb_stu WHERE date = '2011-04-08'
Note: Different databases have differences in date type data: :
(1)MySQL: SELECT * from tb_name WHERE birthday = '2011-04-08'
(2)SQL Server:SELECT * from tb_name WHERE birthday = '2011-04-08'
(3)Access:SELECT * from tb_name WHERE birthday = #2011-04-08#

Four query logical data
SELECT * FROM tb_name WHERE type = 'T'
SELECT * FROM tb_name WHERE type = 'F'
Logic Operators: and or not

Five queries for non-empty data
SELECT * FROM tb_name WHERE address <>'' order by addtime desc
Note: <> is equivalent to PHP !=

6 Use variables to query numerical data
SELECT * FROM tb_name WHERE id = '$_POST[text]'
Note: When using variables to query data, the variables passed into SQL do not need to be used Enclosed in quotation marks, because when strings in PHP are connected to numerical data, the program will automatically convert the numerical data into a string, and then connect it with the string to be connected

7. Use variables to query characters String data
SELECT * FROM tb_name WHERE name LIKE '%$_POST[name]%'
Exact matching method "%%" means it can appear in any position

Eight queries for the first n records
SELECT * FROM tb_name LIMIT 0,$N;
The limit statement is used in conjunction with other statements, such as order by statements, and the SQL statement will be ever-changing, making the program very flexible

n records
SELECT * FROM tb_stu ORDER BY id ASC LIMIT $n

Ten query n records starting from the specified position
SELECT * FROM tb_stu ORDER BY id ASC LIMIT $_POST[begin], $n
Note: The id of the data starts from 0

The first n records in the eleven query statistical results
SELECT * , (yw sx wy) AS total FROM tb_score ORDER BY ( yw sx wy) DESC LIMIT 0,$num

Twelve Query the data of the specified time period
SELECT Field to be found FROM Table name WHERE Field name BETWEEN Initial value AND End value
SELECT * FROM tb_stu WHERE age BETWEEN 0 AND 18

Thirteenth query statistical data by month
SELECT * FROM tb_stu WHERE month(date) = '$_POST[date]' ORDER BY date ;
Note: SQL The following functions are provided in the language. Using these functions, you can easily query by year, month, and day
year(data): Return the value corresponding to the AD year and minute in the data expression
month(data ): Returns the value corresponding to the month and minute in the data expression
day(data): Returns the value corresponding to the date in the data expression

Fourteen queries for records greater than the specified condition
SELECT * FROM tb_stu WHERE age>$_POST[age] ORDER BY age;

Fifteen query results do not show duplicate records
SELECT DISTINCT field name FROM table name WHERE query conditions
Note: SQL statement The DISTINCT in must be used in conjunction with the WHERE clause, otherwise the output information will not change, and the field cannot be replaced by *

Sixteen NOT and predicate for combined condition query
(1)NOT BERWEEN … AND … Query for data between the starting value and the ending value can be changed to Ending value
(2) IS NOT NULL Query for non-null values ​​
( 3)IS NULL Query for null values
(4)NOT IN This formula specifies the search for an expression based on whether the keyword used is included in the list or excluded from the list. The search expression can be a constant or a column name, and the column name can be a set of constants, but more In many cases, it is a subquery

Seventeen displays the duplicate records and the number of records in the data table
SELECT name,age,count(*),age FROM tb_stu WHERE age = '19' group by date

Eighteen pairs of data query in descending/ascending order
SELECT field name FROM tb_stu WHERE condition ORDER BY field DESC descending order
SELECT field name FROM tb_stu WHERE condition ORDER BY field ASC ascending order
Note: If you do not specify a sorting method when sorting fields, the default is ASC ascending order

Nineteen Multi-condition query on data
SELECT field name FROM tb_stu WHERE condition ORDER BY field 1 ASC field 2 DESC …
Note: Sorting query information by multiple conditions is to jointly limit the output of records. Generally, since it is not restricted by a single condition, there are some differences in the output effect.

Twenty pairs of statistical results are sorted
The function SUM ([ALL] field name) or SUM ([DISTINCT] field name) can be used to sum the fields. When the function is ALL, it is all Sum all the records in this field. If it is DISTINCT, sum the fields of all unique records in this field
For example: SELECT name, SUM(price) AS sumprice FROM tb_price GROUP BY name

SELECT * FROM tb_name ORDER BY mount DESC,price ASC

Twenty-one single column data grouping statistics
SELECT id,name,SUM(price) AS title,date FROM tb_price GROUP BY pid ORDER BY title DESC
Note :When the grouping statement group by sorting statement order by appears in the SQL statement at the same time, the grouping statement must be written in front of the sorting statement, otherwise an error will occur

Twenty-two columns of data grouping statistics
Multi-column data grouping statistics are similar to single-column data grouping statistics
SELECT *, SUM (field 1*field 2) AS (new field 1) FROM table name GROUP BY field ORDER BY new field 1 DESC
SELECT id,name ,SUM(price*num) AS sumprice FROM tb_price GROUP BY pid ORDER BY sumprice DESC
Note: The group by statement is generally followed by a sequence that is not an aggregate function, that is, it is not a column to be grouped

Twenty-three Multi-table group statistics
SELECT a.name,AVG(a.price),b.name,AVG(b.price) FROM tb_demo058 AS a,tb_demo058_1 AS b WHERE a.id=b.id GROUP BY b.type ;

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1048754.htmlTechArticle23 MySQL common query statements, 23 MySQL common query statements 1 to query numerical data: SELECT*FROMtb_nameWHEREsum100; Query predicate:, =,,,!=,!,!,=,= 2 query string SELECT*FROMtb_stuWHEREsn...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1677
14
PHP Tutorial
1278
29
C# Tutorial
1257
24
Laravel Introduction Example Laravel Introduction Example Apr 18, 2025 pm 12:45 PM

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

MySQL and phpMyAdmin: Core Features and Functions MySQL and phpMyAdmin: Core Features and Functions Apr 22, 2025 am 12:12 AM

MySQL and phpMyAdmin are powerful database management tools. 1) MySQL is used to create databases and tables, and to execute DML and SQL queries. 2) phpMyAdmin provides an intuitive interface for database management, table structure management, data operations and user permission management.

MySQL vs. Other Programming Languages: A Comparison MySQL vs. Other Programming Languages: A Comparison Apr 19, 2025 am 12:22 AM

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages ​​such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages ​​have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

Laravel framework installation method Laravel framework installation method Apr 18, 2025 pm 12:54 PM

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

Explain the purpose of foreign keys in MySQL. Explain the purpose of foreign keys in MySQL. Apr 25, 2025 am 12:17 AM

In MySQL, the function of foreign keys is to establish the relationship between tables and ensure the consistency and integrity of the data. Foreign keys maintain the effectiveness of data through reference integrity checks and cascading operations. Pay attention to performance optimization and avoid common errors when using them.

Compare and contrast MySQL and MariaDB. Compare and contrast MySQL and MariaDB. Apr 26, 2025 am 12:08 AM

The main difference between MySQL and MariaDB is performance, functionality and license: 1. MySQL is developed by Oracle, and MariaDB is its fork. 2. MariaDB may perform better in high load environments. 3.MariaDB provides more storage engines and functions. 4.MySQL adopts a dual license, and MariaDB is completely open source. The existing infrastructure, performance requirements, functional requirements and license costs should be taken into account when choosing.

SQL vs. MySQL: Clarifying the Relationship Between the Two SQL vs. MySQL: Clarifying the Relationship Between the Two Apr 24, 2025 am 12:02 AM

SQL is a standard language for managing relational databases, while MySQL is a database management system that uses SQL. SQL defines ways to interact with a database, including CRUD operations, while MySQL implements the SQL standard and provides additional features such as stored procedures and triggers.

MySQL: The Database, phpMyAdmin: The Management Interface MySQL: The Database, phpMyAdmin: The Management Interface Apr 29, 2025 am 12:44 AM

MySQL and phpMyAdmin can be effectively managed through the following steps: 1. Create and delete database: Just click in phpMyAdmin to complete. 2. Manage tables: You can create tables, modify structures, and add indexes. 3. Data operation: Supports inserting, updating, deleting data and executing SQL queries. 4. Import and export data: Supports SQL, CSV, XML and other formats. 5. Optimization and monitoring: Use the OPTIMIZETABLE command to optimize tables and use query analyzers and monitoring tools to solve performance problems.

See all articles