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%'
    
  • 相关阅读:
    图标工具箱
    第40课 程序的内存布局
    第39课 程序中的三国天下
    第38课 动态内存分配
    第37课 指针阅读技巧分析
    第36课 函数与指针分析
    第35课 数组参数和指针参数分析
    第34课 多维数组和多维指针
    第33课 main函数与命令行参数
    第32课 数组指针和指针数组分析
  • 原文地址:https://www.cnblogs.com/2222bai/p/11759334.html
Copyright © 2011-2022 走看看