展开全部

SQL做除法的步骤:

select

t.[origin-destination],t.[SH/LANE/MOT] /(select count(1) from ['TMS$']) AS PERCENTAGEFROM (代码1) t

group by [origin-destination],t.[SH/LANE/MOT]

having t.[SH/LANE/MOT] /count(*) <= 0.01

注:两个count都是int,相除会没有小数部分,所以应该都给转32313133353236313431303231363533e4b893e5b19e31333431363639成带小数的数。

cast as numeric(10,4) 。

54965eaf201c681be9fc12541bea9dc4.png

扩展资料

例题,表明为chuqinqk   列名 迟到 1(次)一个月的总天数为30   求迟到率。

select * from table1 where 工资>2500 and 工资<3000 //同上

select 姓名 from table1 where 性别='0' and 工资='4000'

select * from table1 where not 工资= 3200

select * from table1 order by 工资desc //将工资按照降序排列

select * from table1 order by 工资 asc //将工资按照升序排列

select * from table1 where year(出身日期)=1987 //查询table1 中所有出身在1987的人select * from table1 where name like

'%张' /'%张%' /'张%' //查询1,首位字‘张’3,尾位字‘张’2,模糊查询

select * from table1 order by money desc //查询表1按照工资的降序排列表1 (升序为asc)

select * from table1 where brithday is null //查询表1 中出身日期为空的人

SQL语言,是结构化查询语言(Structured Query Language)的简称。

Logo

更多推荐