摘要: 查询出工资大于1500的所有有雇员的信息select * from emp where sal>1500;查询每月可以拿到奖金的雇员的信息(不为空 IS NOT NULL)select * from emp where comm is not null;查询工资大于1500,并且可以拿到奖金的雇员的信息select * from emp where sal>1500 and comm is not null;查询工资不大于1500,并且不能拿到奖金的雇员的信息(使用NOT 取反)select * from emp where not sal>1500 and comm is 阅读全文
posted @ 2013-03-02 22:32 bod08daijianwei 阅读(242) 评论(0) 推荐(0) 编辑