黑马程序员技术交流社区

标题: 数据库查询 [打印本页]

作者: 王路路    时间: 2012-10-23 02:09
标题: 数据库查询
本帖最后由 王路路 于 2012-10-23 15:57 编辑

简单查询
select * from t_person;

查询需要的列:
select fnumber from t_person;

列别名:
select fnumber as 编号,fname As 姓名,fage As 年龄 From t_person;

查询符合条件的数据:
Select fname fromt_person where fsalary<5000;

查询当前时间:
select getdate;

查询数据数目:
select count(*) from t_employee;

最大值查询:
select max(fsalary) from t_person;

最小值查询:
select min(fsalary) from t_person;

平均值查询:
select avg(fsalary) from t_person;

总和查询:
select sum(fsalary) from t_person;


作者: 朱坤福    时间: 2012-10-23 15:20
查询所有项:

count函数是统计的表示查询有多少员工
查询所有项:
select * from t_employee;
作者: 王路路    时间: 2012-10-23 15:58
朱坤福 发表于 2012-10-23 15:20
查询所有项:

count函数是统计的表示查询有多少员工

嗯,是的,多谢楼上的.




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2