当前位置:网站首页>SQL query statement
SQL query statement
2022-06-26 06:57:00 【My talented girlfriend】
The basic query
- Specified field
select Field A, Field B from surface
- Query all fields
select * from surface
Query data filtering
- Simple filtering
| Operator | Example |
|---|---|
| = | id = 1 |
| != or <> | sex != 1 |
| >= 、> 、<、<= | salary > 1000 |
| BETERRN | salary between 100 and 200 |
| IN | name IN(‘ Cherish ’,‘ Barbarian ’) |
- A null value judgment
select * from user where name is null
- Text blur
Use like matching ,% matching 0 Or more than one character ,_ Match a character
select * from user where name like '%i'
- Combinatorial logic
AND OR NOT - duplicate removal
DISTINCT
Sort
order by –
ASC: Ascending ( Default )
DESC: Descending
Qualified result set
Here is mysql How to write a sentence ,limit Specify the quantity ,offset Specify where to start , That's the offset , The default is 0 Start
select Field from Table name order by Field limit a offset b
notes
- – Two hyphens
- /* */ Used for multi line comments
边栏推荐
- 【图像增强】基于人工多重曝光融合AMEF实现图像去雾附matlab代码
- 宝塔服务器搭建及数据库远程连接
- [image fusion] MRI-CT image fusion based on gradient energy, local energy and PCA fusion rules with matlab code
- 【特征提取】基于稀疏PCA实现目标识别信息特征选择附matlab源码
- Development trends and prospects of acrylamide crystallization market in the world and China 2022-2027
- 【路径规划】基于改进人工势场实现机器人路径规划附matlab代码
- Laravel implements groupby to query the number of packets
- 解决dialog 底部透明的问题
- Research Report on market supply and demand and strategy of China's pallet scale industry
- SQL 查询语句
猜你喜欢

C nuget offline cache package installation

What is data mining?

专业课-代码题记录

【图像分割】基于最大主曲率实现视网膜眼底图像中的血管提取附matlab代码

Solution of garbled code in sparkshell deletion key of SecureCRT

MySQL基础用法01
![[micro service series] protocol buffer dynamic analysis](/img/86/357d55c77cc67d6413af2de59bf395.png)
[micro service series] protocol buffer dynamic analysis

I have been testing at Tencent for several years

I use flask to write the website "II"

Phantom star VR equipment product details II: dark battlefield
随机推荐
Kotlin Compose 状态恢复 rememberSaveable 与 remember
MySQL delete in without index
Marketing skills: compared with the advantages of the product, it is more effective to show the use effect to customers
Lightgbm-- parameter adjustment notes
Development trends and prospects of acrylamide crystallization market in the world and China 2022-2027
Spark3.3.0源码编译补充篇-抓狂的证书问题
unity之EasyAR使用
专业课-代码题记录
同步通信和异步通信的区别以及优缺点
【特征提取】基于稀疏PCA实现目标识别信息特征选择附matlab源码
Show statement usage supplement
SHOW语句用法补充
OCA Security Alliance (cybersecurity mesh)
[004] [stm32] MDK project configuration and commissioning
cocoscreator播放Spine动画
China peek market outlook and future strategic planning proposal report 2022-2027
LabVIEW Arduino TCP/IP远程智能家居系统(项目篇—5)
SQL Basics
Research Report on pallet handling equipment industry - market status analysis and development prospect forecast
Mysql delete in 不走索引的