表中数据的操作 – 查(select)
1、单表数据查询
1.1简单数据查询
语法1:select f1,f2,f3,...from table_name;
语法2:select * from table_name;
【说明:f1 f2表示表中的列名 *表示表中所有的列】
select * from t_employee;
select empno,ename,sal from t_employee;
1.2 distinct关键字 避免重复数据的查询
例子:查询员工表中职位(job列)列的所有数据
select job from t_employee;
例子:查询员工表中有哪些职位,使用distinct去重
select distinct job from t_employee;
1.3 可以使用四则运算进行数据查询(+ - * /)
例子1:查询员工表中所有员工的工资
select sal from t_employee;
例子2:查询员工表中所有员工的年薪
select sal,sal*12 from t_employee;
1.4 给列起别名
语法:select f1 [as] 别名,f2 [as] 别名...
from table_name;
说明:as可以省略
例子:查询员工表中所有员工的月薪和年薪
select sal as monthsal,sal*12 as yearsal from t_employee;
select sal monthsal,sal*12 yearsal from t_employee;
1.5 concat关键字-设置显示格式的数据查询
例子:查询员工表中每位员工的年薪,显示格式要求:xx的年薪为xx
select ename,sal*12 from t_employee;
select concat(ename,sal*12) from t_employee;
select concat(ename,'的年薪为',sal*12) yealsal
from t_employee;
练习:查询员工表中的数据,显示结果为: 我是 xx ,我的入职日期是 xx 号
select concat('我是',ename,',我的入职日期是'
,Hiredate,'号') as message
from t_employee;
2、多表数据查询
|