MY-SQL-查询

MY-SQL-查询

查询

-- 1、查询tb_emp表的name,entry达特字段

select name,entrydate from tb_emp;

-- 2、查询返回所有字段

-- 性能高

select id,username,password,name,gender,image,job,
entrydate,create_time,update_time from tb_emp;

-- 性能低,不直观

-- select * from tb_emp;

-- 3、查询所有员工的name,entrydate,并起别名(姓名,入职日期

-- select name 姓名,entrydate 入职日期 from tb_emp;

-- 4、查询已有的员工关联了哪几种职位(不要重复

-- select distinct job from tb_emp;

-- 1、查询姓名为杨逍的员工

-- select * from tb_emp where name='杨逍';

-- 2、查询id小等于5的员工信息

-- select * from tb_emp where id<=5;

-- 3、查询没有分配职位的员工信息

-- select * from tb_emp where job is null;

-- 4、查询有职位的员工信息

-- select * from tb_emp where job is not null;

-- 5、查询密码不等于'123456'的员工信息

-- select * from tb_emp where password != '123456';

-- 6、查询入职日期在'2000-01-01'包含到'2010-01-01'(包含)之间的员工信息

-- select * from tb_emp where entrydate >= '2000-01-01' and entrydate <= '2010-01-01'

-- select * from tb_emp where entrydate between '2000-01-01' and '2010-01-01';

-- 7、查询入职时间在'2000-01-01'(包含)到'2010-01-01'(包含)之间且性别为女的员工

-- select * from tb_emp where entrydate between '2000-01-01' and '2010-01-01' and gender=2;

-- 8、查询职位是2(讲师),3(学工主管),4(教研主管)的员工信息 or:或者

-- select * from tb_emp where job=2 or job=3 or job=4;

-- in(...):在in之后的列表中的值,多选一

-- select * from tb_emp where job in (2,3,4);

-- 9、查询姓名为两个字的员工信息 _:匹配单个字符

-- select * from tb_emp where name like'__';

-- 10、查询姓张的员工信息 %:匹配任意字符

-- select * from tb_emp where name like '张%';
相关推荐
q***61414 分钟前
Spring中Aware的用法以及实现
java·数据库·spring
红树林0713 分钟前
渗透测试之sql注入--报错注入
数据库·sql·安全·web安全
菜鸟小九38 分钟前
mysql(锁)
数据库·mysql·oracle
c***42101 小时前
【Sql Server】随机查询一条表记录,并重重温回顾下自定义函数的封装和使用
数据库·性能优化
q***16081 小时前
SpringCloud 系列教程:微服务的未来(二)Mybatis-Plus的条件构造器、自定义SQL、Service接口基本用法
spring cloud·微服务·mybatis
Appreciate(欣赏)1 小时前
JAVA使用poi类读取xlxs文件内容拼接成添加数据SQL
java·开发语言·sql
q***44811 小时前
PostgreSQL的备份方式
数据库·postgresql
v***59831 小时前
【SQL Server】超详细SQLServer日期转换、字符串、数学、聚合等常用函数大全(最新版)
数据库·sqlserver
q***23571 小时前
python的sql解析库-sqlparse
数据库·python·sql
q***92512 小时前
sql实战解析-sum()over(partition by xx order by xx)
数据库·sql