MySQL查询 合集
一、查询
1、 查找表emp中,每个雇员一年所挣得的钱(需考虑:不是所有的人每个月都有奖金,存在空值情况,字段中有月薪和奖金)
select ename,sal,comm,(sal + nvl(comm,0))*12 年收入 from scott.emp;
2、如何把数据库一张表中所有可以向下取整的数都替换为向下取整的数据
Update a set a.xx=a.xx
向下取整 where a.xx整数部分=a.xx向下取整