当前位置:网站首页>MySQL数据库 - 单表查询(二)
MySQL数据库 - 单表查询(二)
2022-04-23 19:28:00 【x 心 动】
第1关:带 LIKE 的字符匹配查询
USE Company;
######### Begin #########
select Name ,Salary
from tb_emp
where Name like 'C%';
######### End #########
第2关:查询空值与去除重复结果
USE Company;
######### Begin #########
select *
from tb_emp
where DeptId IS NULL;
######### End #########
######### Begin #########
select distinct Name
from tb_emp;
######### End #########
第3关:带 AND 与 OR 的多条件查询
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 心 动]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_45623072/article/details/124055761
边栏推荐
- Wechat applet part of the mobile phone Preview PDF did not respond
- Class loading mechanism
- js获取本机ip地址
- C学习完结
- [webrtc] add x264 encoder for CEF / Chromium
- Is meituan, a profit-making company with zero foundation, hungry? Coupon CPS applet (with source code)
- Class loading process of JVM
- js 计算时间差
- Core concepts of rest
- Some speculation about the decline of adults' language learning ability
猜你喜欢
[报告] Microsoft :Application of deep learning methods in speech enhancement
[report] Microsoft: application of deep learning methods in speech enhancement
Redis optimization series (III) solve common problems after master-slave configuration
[webrtc] add x264 encoder for CEF / Chromium
White screen processing method of fulter startup page
山大网安靶场实验平台项目—个人记录(四)
Decompile and get the source code of any wechat applet - just read this (latest)
An idea of rendering pipeline based on FBO
Use of fluent custom fonts and pictures
An algorithm problem was encountered during the interview_ Find the mirrored word pairs in the dictionary
随机推荐
Parsing headless jsonarray arrays
Translation of audio signal processing and coding: Preface
命令-sudo
Intuitive understanding of the essence of two-dimensional rotation
The usage of slice and the difference between slice and array
js上传文件时控制文件类型和大小
HTTP cache - HTTP authoritative guide Chapter VII
MySQL syntax collation (5) -- functions, stored procedures and triggers
SQL常用的命令
js 计算时间差
JS calculation time difference
openlayers 5.0 热力图
Core concepts of rest
openlayers 5.0 离散聚合点
Pdf reference learning notes
@MapperScan与@Mapper
Kubernetes入门到精通-在 Kubernetes 上安装 OpenELB
ArcMap publishing slicing service
Oracle configuration st_ geometry
An algorithm problem was encountered during the interview_ Find the mirrored word pairs in the dictionary