SQL Server T-SQL高级查询 高级查询在数据库中用得是最频繁的,也是应用最广泛的. Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student…
数学函数.字符串函数.转换函数.时间日期函数 1.数学函数 ceiling()--取上限 select ceiling(oil) as 油耗上限 from car floor()--取下限 select floor(oil) as 油耗下限 from car ) as 四舍五入 from car (两个参数) select)--为保留一位小数 select abs(-10)--绝对值 select PI()--圆周率 select sqrt()--开根号 select square()--平方…