当前位置:网站首页>Mysql database - single table query (II)
Mysql database - single table query (II)
2022-04-23 19:42:00 【X heart】
The first 1 Turn off : belt LIKE Character matching query for
USE Company;
######### Begin #########
select Name ,Salary
from tb_emp
where Name like 'C%';
######### End #########
The first 2 Turn off : Querying null values and removing duplicate results
USE Company;
######### Begin #########
select *
from tb_emp
where DeptId IS NULL;
######### End #########
######### Begin #########
select distinct Name
from tb_emp;
######### End #########
The first 3 Turn off : belt AND And OR Multi criteria query of
USE Company;
######### Begin #########
select *
from tb_emp
where DeptId='301' and Salary>3000;
######### End #########
######### Begin #########
select *
from tb_emp
where DeptId='301' OR DeptId='303';
######### End #########
版权声明
本文为[X heart]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231927030885.html
边栏推荐
- Go three ways to copy files
- MySQL syntax collation (5) -- functions, stored procedures and triggers
- MySQL syntax collation (3)
- Kubernetes入门到精通-在 Kubernetes 上安装 OpenELB
- Intuitive understanding of the essence of two-dimensional rotation
- Kubernetes entry to mastery - bare metal loadbalance 80 443 port exposure precautions
- Web Security
- Project training of Software College of Shandong University - Innovation Training - network security shooting range experimental platform (6)
- Pit encountered using camera x_ When onpause, the camera is not released, resulting in a black screen when it comes back
- A brief explanation of golang's keyword "competence"
猜你喜欢

C6748 软件仿真和硬件测试 ---附详细FFT硬件测量时间

命令-sudo

The textarea cursor cannot be controlled by the keyboard due to antd dropdown + modal + textarea

Intuitive understanding of the essence of two-dimensional rotation

Mfcc: Mel frequency cepstrum coefficient calculation of perceived frequency and actual frequency conversion

山大网安靶场实验平台项目-个人记录(五)

Decompile and get the source code of any wechat applet - just read this (latest)

Is meituan, a profit-making company with zero foundation, hungry? Coupon CPS applet (with source code)

Grafana 分享带可变参数的链接

MySQL syntax collation (5) -- functions, stored procedures and triggers
随机推荐
Possible root causes include a too low setting for -Xss and illegal cyclic inheritance dependencies
SRS 的部署
Web Security
Grafana 分享带可变参数的链接
MySQL数据库 - 连接查询
Shanda Wangan shooting range experimental platform project - personal record (V)
5 minutes to achieve wechat cloud applet payment function (including source code)
MySQL数据库 - 单表查询(三)
Strange problems in FrameLayout view hierarchy
深度学习环境搭建步骤—gpu
MySQL syntax collation (3)
uIP1.0 主动发送的问题理解
How to use go code to compile Pb generated by proto file with protoc Compiler Go file
RuntimeError: Providing a bool or integral fill value without setting the optional `dtype` or `out`
Class loading mechanism
No, some people can't do the National Day avatar applet (you can open the traffic master and earn pocket money)
Pit encountered using camera x_ When onpause, the camera is not released, resulting in a black screen when it comes back
Main differences between go and PHP
@MapperScan与@Mapper
MySQL数据库 - 数据库和表的基本操作(二)