0603mysql数据增删改查练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0603mysql数据增删改查练习相关的知识,希望对你有一定的参考价值。

1. 查询出部门编号为30的所有员工

select * from yg where deptno = 30;
2. 所有销售员的姓名、编号和部门编号。 

select ename,empno,deptno from yg where job = "销售员";
3. 找出奖金高于工资的员工。

select * from yg where comm > sal;
4. 找出奖金高于工资60%的员工。

select * from yg where comm > 0.6*sal;
5. 找出部门编号为10中所有经理,和部门编号为20中所有销售员的详细资料。

select * from yg where (deptno = 10 and job = "经理")or(deptno = 20 and job = "销售员");

6.找出部门编号为10中所有经理,部门编号为20中所有销售员,还有即不是经理又不是销售员但其工资大或等于20000的所有员工详细资料。

select * from yg where (deptno = 10 and job = "经理")or(deptno = 20 and job = "销售员")or(job not in("经理","销售员") and sal >= 20000);

7.无奖金或奖金低于1000的员工。

select * from yg where comm <= 1000 or comm is null;
8. 查询名字由三个字组成的员工。

select * from yg where ename like "___";
9.查询2000年入职的员工。

select * from yg where hiredate like "2000%";

select * from yg where hiredate >= "2000-01-01" and hiredate <= "2000-12-31";
10. 查询所有员工详细信息,用编号升序排序

select * from yg order by empno asc;
11. 查询所有员工详细信息,用工资降序排序,如果工资相同使用入职日期升序排序

select * from yg order by sal desc,hiredate asc;

12.查询姓周的两个名字的员工。

select * from yg where ename like "_";

查询所有姓张的员工。

select * from yg where ename like "%";

 

以上是关于0603mysql数据增删改查练习的主要内容,如果未能解决你的问题,请参考以下文章

mysql增删改查练习

使用MySQL练习增删改查时出现连接错误

MySQL 第二环节 增删改查 练习

框架 day30 Struts2练习项目-人员管理(增删改查)

Thinkphp---练习:数据的增删改查

Mysql(2.2)数据操作(增删改查)、事务控制