SQL问题 - MS-SQL Server / 基础类
谁能告诉我 order by 和 group by 的具体用法以及区别,重在区别,最好附上一个或者几个例子........... 谢谢!
GROUP BY 是分組,用來加總計算等操作。 ORDER BY 就是排列順序用,方便操作者查看數據。引用 SQL code 查询之order by,group by和having的使用 (转) (1)order by ORDER BY子句的语法为: SELECT column1, SUM(column2) from "list-of-tables" ORDER BY "column-list" [ASC | DESC]; [ ] = optional ORDER…… 学习 SQL code: 不好解释,看例子 create table tb (id int,counts int) insert tb select 1,10 union all select 2,40 union all select 3,30 union all select 2,20 --在没有order by的情况 select id,counts from tb /* id counts ----------- ----------- 1 10 2 40 3 30 2 20 (所影响的行数为 4 行) */ --有order by的情况 1,2,3 其中asc是排序规则为升序(从小到大)用desc是从大到小,如果不写默认为asc select id,counts from tb order by id asc /* id counts ----------- ----------- 1 10 2 40 2 20 3 30 (所影响的行数为 4 行) */ --先按id排序,再按counts排序 select id,counts from tb order by id asc,counts asc /* id
相关问答:
我一个项目,有个插入操作,具体是这样的: 我有进货信息表。在出货时选择相应的进货信息,输入数量,选择部门后,点保存按钮,由于网络延时,点一下没有反映,于是用户就又点一下,导致一次插入了两条记录: 例:
......
字段1,字段2.....字段N,Status,ParentID 1,Name1....test1,1,99 1,Name1....test1,3,99 1,Name2....test2,1,101 1,Name2....test2,3,101 1,Name3....test3,2,101 1,Name1....test1,4,101 想要的结果是: 1,Na ......
SQL code: rs.open "select * from guide where city_name='北京' order by pai desc",conn,1,1 do while not rs.eof or rs.bof 。。 。。 。。 rs.movenext loop 这个sql语句在wap站里 本身有 ......
A表 有两个字段 id 唯一数字域 InfoTxt text 类型 我现在要把 id 不是14 的所有 InfoTxt字段 文本后面 都加上 'aaa' 按下面执行下来 只有表最后一行加上了 'aaa' ......