本帖最后由 王路路 于 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;
|