标签:最小值 table agg sql语句 desc 模式 values val order by
与后台联调页面,经常会验证数据正确性,这时候就需要会点SQL语句,以下是常用的SQL:
单表查询 select * from table 条件查询 select * from table where fieid=‘33214047251857409‘ LIKE 查询 "%" 可用于定义通配符(模式中缺少的部分),这句SQL是模糊查询值的前端带有‘33214047251‘。 select * from table where fieid LIKE ‘33214047251%‘ NOT 查询 ,这句SQL是模糊查询值中不包含‘33214047251‘。 select * from table where fieid not LIKE ‘%33214047251%‘ 插入新增一行 insert into table(fieid,fieId2,Energymarket_Id,Memberofaggregatenode,Flowgate_Id) values(1,2,3,4,5) 排序 先排序field1 ,在field1中相同的值再用field2排序。 select * from table order by fieid,fieId2 desc 查询行数 select count(1) as xxx from table 求和 select sum(fieId2) as sumNum from table 求平均值 select avg(fieId2) as avgNum from table 求最大值 select max(fieId2) as maxNum from table 求最小值 select min(fieId2) as minNUm from table
标签:最小值 table agg sql语句 desc 模式 values val order by
原文地址:https://www.cnblogs.com/sunyilindbk/p/9334131.html