In SQL statements, query is the most commonly used operation. SQL can not only query data in tables, but also return the results of arithmetic operations and expressions. Next, let's learn about the basic query statements. 1. Basic SELECT statement1. Query the specified fieldSyntax format: Multiple fields can be specified in the statement, and the results will be displayed based on the specified fields.
SELECT user_id,user_name,nick_name,sex FROM users; 2. Query all fields To view all fields in a table, you can use an asterisk "*". For example, the following statement queries all data in the SELECT * FROM users; "*" represents all fields. When the database parses the statement, it will use the field names in the table for expansion. According to the actual situation, replace "*" with fields in 3. Set aliasUse the AS keyword to set an alias for a column. 4. Constant query In the as follows: SELECT 100; SELECT 'user'; 5. Expression querySELECT 98%100; 6. Deduplication You can use the SELECT DISTINCT user_name FROM users;
When SELECT DISTINCT user_name,nick_name FROM users; 7. Conditional query The SELECT <field name>,... FROM <table name> WHERE <conditional expression>; 7.1 Single condition query Query users whose gender is male: SELECT * FROM users WHERE sex='男'; Query users whose age is less than or equal to 24: SELECT * FROM users WHERE age<=24; Query users whose user id is not 3: SELECT * FROM users WHERE NOT user_id=3; The 7.2 Multiple Condition Query Query users whose age is less than or equal to 24 or whose gender is male: SELECT * FROM users WHERE age<=24 OR sex='男'; Query users whose age is less than or equal to 24 and whose gender is male: SELECT * FROM users WHERE age<=24 AND sex='男'; The above query uses multiple conditions. If the conditions can be satisfied at the same time, use the 7.3 Querying by specified range Query users whose user ID is in the range (2,3,7,8): SELECT * FROM users WHERE user_id IN (2,3,7,8); IN specifies multiple values in the Query users whose user id is between 10 and 15: SELECT * FROM users WHERE user_id BETWEEN 10 AND 15;
7.4 Fuzzy Query The Syntax format: Field name Matching mode:
For example: Find data where the user nickname contains SELECT * FROM users WHERE nick_name LIKE '%tigeriaf%'; This is the end of this article about SQL basic query statements. For more relevant SQL basic query statements, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of Vue lazyload picture lazy loading example
>>: CSS flexible layout FLEX, media query and mobile click event implementation
Preface Those who have played with MySQL must be ...
We are in an era of rapid development of mobile In...
When using nginx as a reverse proxy, you can simp...
1. Purchase of Server 1. I chose Alibaba Cloud...
Table of contents 1. Introduction to docker-maven...
After installing MySQL, enter mysql -u root -p in...
This article shares the Vant Uploader component f...
Preface As one of the best web servers in the wor...
Recently I saw the article Build your own React o...
Preface I accidentally discovered that the half-h...
Table of contents 1. Create components using func...
There are very complex HTML structures in web pag...
You may encounter the following problems when ins...
Links to the current page. ------------------- Com...
1. Background of Parallel Replication First of al...