zoukankan      html  css  js  c++  java
  • Day 34 作业(简单的查询)

    作业:
    	1. 查看岗位是teacher的员工姓名、年龄
    	2. 查看岗位是teacher且年龄大于30岁的员工姓名、年龄
    	3. 查看岗位是teacher且薪资在9000-1000范围内的员工姓名、年龄、薪资
    	4. 查看岗位描述不为NULL的员工信息
    	5. 查看岗位是teacher且薪资是10000或9000或30000的员工姓名、年龄、薪资
    	6. 查看岗位是teacher且薪资不是10000或9000或30000的员工姓名、年龄、薪资
    	7. 查看岗位是teacher且名字是jin开头的员工姓名、年薪
    
    //1. 查看岗位是teacher的员工姓名、年龄
    select name, age from staff_info where state = 'teacher'
    //2. 查看岗位是teacher且年龄大于30岁的员工姓名、年龄
    select name, age from staff_info where state = 'teacher' and age > 30
    //3. 查看岗位是teacher且薪资在9000-10000范围内的员工姓名、年龄、薪资
    select name, age, salary from staff_info where state = 'teacher' and salary between 9000 and 10000
    //4. 查看岗位描述不为NULL的员工信息
    select * from staff_info where state_desc is not null
    //5. 查看岗位是teacher且薪资是10000或9000或30000的员工姓名、年龄、薪资
    select name, age, salary from staff_info state = 'teacher' and salary in (10000, 9000, 30000)
    //6. 查看岗位是teacher且薪资不是10000或9000或30000的员工姓名、年龄、薪资
    select name, age, salary from staff_info state = 'teacher' and salary not in (10000, 9000, 30000)
    //7. 查看岗位是teacher且名字是jin开头的员工姓名、年薪
    select name, annual_salary from staff_info where state = 'teacher' and name like 'jin%'
    
  • 相关阅读:
    Win10或Win8下ObjectARX2015 Wizard向导创建项目失败解决方法
    对用友二次开发的初次认识
    我对asp.net管道模型的理解
    wblockCloneObjects 写块克隆的使用
    acedCommand 之使用镜像命令
    MFC之动态调用自己写的类库中的类的成员方法
    objectarx 天正的墙转梁线
    objectarx 之让用户自定义插件命令
    MFC之多字节和宽字节的总结
    MFC之使用blat发送邮件
  • 原文地址:https://www.cnblogs.com/2222bai/p/11759334.html
Copyright © 2011-2022 走看看