您的当前位置:首页正文

实验六 MySQL语言结构

2022-12-17 来源:客趣旅游网
实验六 MySQL语言结构 1. 计算194 142的乘积 select 194*142;

2. 获取以下这串字母的值 select 'i\\nlove\\nmysql';

3. 获得现在使用MySQL版本 select @@version;

4. 获得当前系统时间 select current_time();

5. 使用局部变量查找所有女员工的编号和姓名并进行查询 use yggl ;set @female=0;

6. 定义一个变量,用于获取号码为01的员工的电话号码

set @phone=(select phone from employees where employeeid='01');

7. 使用运算符减法查询员工实际收入 select income-outcome from salary;

8. 使用比较运算符大于号,查询员工表中工作时间大于五年的员工信息 select * from employees where workyear>5;

9. 使用逻辑运算符 and 查看语句结果 select(7>6)and ('a'='b');

10. 获得一组数值的最大值和最小值 select greatest(5,76,25.9), least(5,76,25.9);

11. 求广告部员工的总人数 select count(employeeid) as zrs

from employees where departmentid=(

select departmentid from departments where departmentname='广告部');

12. 使用contact函数链接两个字符串 select concat('i','love you');

13. 使用ASCii()函数返回字符表达式最左端字符的ASCII值 select ascii('abc');

14. 获得当前日期和时间 select now();

15. 查询yggl数据库中员工为01的员工的出生年份

select year(birthday) from employees where employeeid='01';

因篇幅问题不能全部显示,请点此查看更多更全内容