“mysql SQL语句”如何将“sum()”放在“where”后面做条件?
方法如下
写入语句:“select col1,sum(cols2) from table_name group by col1 having sum(col2)>100”
写入语句可以用where,having代表查询按照col1分组后,sum(col2)大于100。
SQL即结构化查询语言,是一种特殊目的的编程语言,是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统;同时也是数据库脚本文件的扩展名。
SQL语句删除表:drop table tabname--这是将表连同表中信息一起删除但是日志文件中会有记录
SQL语句创建索引:create [unique] index idxname on tabname(col…)
SQL基本语句
sql="select * from 数据表 where字段名like '%字段值%' order by 字段名 [desc]"
sql="select top 10 * from 数据表 where字段名=字段值 order by 字段名 [desc]"
sql="select top 10 * from 数据表 order by 字段名 [desc]"
sql="select * from 数据表 where字段名in ('值1','值2','值3')"
sql="select * from 数据表 where字段名between 值1 and 值2"
广告 您可能关注的内容 |