项目开发中我所用到的SQL收集
1、保留两位小数
SELECT avg(cast(col as decimal(5, 2))) FROMtable
先转化数据类型再查询
2、查询某个阶段的记录10-15的用户名
select top 5 * from Users (select top 15 * from Users order by id asc) order by id desc
关注.NET开发技术,网站开发,应用系统开发http://www.hnhqwl.com