zoukankan      html  css  js  c++  java
  • database homework1

    mysql> select * from teacher_info;
    +----+------+-----+--------+---------+
    | id | name | age | salary | job     |
    +----+------+-----+--------+---------+
    |  1 | nick |  18 |  30000 | teacher |
    |  2 | tank |  18 |  28000 | teacher |
    |  3 | echo |  30 |  50000 | teacher |
    |  4 | egon |  50 |   8000 | teacher |
    +----+------+-----+--------+---------+
    	1. 查看岗位是teacher的员工姓名、年龄
    mysql> select name,age from teacher_info where job = 'teacher';
    	2. 查看岗位是teacher且年龄大于30岁的员工姓名、年龄
    mysql> select name,age from teacher_info where age >30;
    +------+-----+
    | name | age |
    +------+-----+
    | egon |  50 |
    +------+-----+
    1 row in set (0.00 sec)
    
    	3. 查看岗位是teacher且薪资在5000-10000范围内的员工姓名、年龄、薪资
    mysql> select name,age,salary from teacher_info where job = 'teacher' and (salary between 5000 and 10000);
    +------+-----+--------+
    | name | age | salary |
    +------+-----+--------+
    | egon |  50 |   8000 |
    +------+-----+--------+
    1 row in set (0.00 sec)
    	4. 查看岗位描述不为NULL的员工信息
    mysql> select * from teacher_info where job != null;
    Empty set (0.00 sec)
    	5. 查看岗位是teacher且薪资是10000或8000或30000的员工姓名、年龄、薪资
    mysql> select name,age,salary from teacher_info where salary in (10000,8000,30000);
    +------+-----+--------+
    | name | age | salary |
    +------+-----+--------+
    | nick |  18 |  30000 |
    | egon |  50 |   8000 |
    +------+-----+--------+
    2 rows in set (0.33 sec)
    	6. 查看岗位是teacher且薪资不是10000或8000或30000的员工姓名、年龄、薪资
    mysql> select name,age,salary from teacher_info where salary not in (10000,8000,30000);
    +------+-----+--------+
    | name | age | salary |
    +------+-----+--------+
    | tank |  18 |  28000 |
    | echo |  30 |  50000 |
    +------+-----+--------+
    2 rows in set (0.00 sec)
    	7. 查看岗位是teacher且名字是jin开头的员工姓名、年薪
    mysql> select name,salary from teacher_info where name = 'jin%';
    Empty set (0.00 sec)
    
  • 相关阅读:
    Windows phone 应用开发[9]单元测试
    Git Tool Part 2
    Windows phone 应用开发[6]Managed Extensibility Framework应用程序扩展
    也谈存储过程分页
    上传图像到sqlserver
    这两段代码是不同的
    TextBox中的TextChanged和KeyDown事件的小区别
    发现发现返回一条记录的datareader的新用法
    最近好多疑问啊!高手给点意见吧!
    csdn论坛去不了,只有在这里问了
  • 原文地址:https://www.cnblogs.com/agsol/p/11760126.html
Copyright © 2011-2022 走看看