由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - [转载] 问个SQL问题
相关主题
问个SQL问题- partial outer joinSQL copy a table into a new table and add a new column
one question on SQL新手请教SQL 语法问题- alias 和 join
网站遭受Hack, 有哪位知道如何处理?error of executing SQL query of string concatenation (转载
Rookie's question again问个SQL的问题
SQL Server query 一问也来问个SQL的问题
请求SQL语句问个基本的select问题
求助:如何ColumName 作为变量放入query问个SQL问题
SQL combine two tables into one table and add a new column问个sql的问题吧,搞不出来了. (转载)
相关话题的讨论汇总
话题: f4话题: sum话题: select话题: f5话题: f2
进入Database版参与讨论
1 (共1页)
l***h
发帖数: 139
1
【 以下文字转载自 OnTheRoad 讨论区 】
【 原文由 laugh 所发表 】
select f1, f2, f3, sum(f4), f5 from table1 where blah blah
group by f1, f2
这个group by是不是要把所有非f4的fields都放进去?
s***m
发帖数: 28
2

You may want to do this.
select f1,f2,f3,f5,sum(f4) from table1 Where blah....
group by f1,f2,f3,f5;
I am not sure you can include f5 after sum(f4).

【在 l***h 的大作中提到】
: 【 以下文字转载自 OnTheRoad 讨论区 】
: 【 原文由 laugh 所发表 】
: select f1, f2, f3, sum(f4), f5 from table1 where blah blah
: group by f1, f2
: 这个group by是不是要把所有非f4的fields都放进去?

a****c
发帖数: 25
3

It should be fine that you put the sum() anywhere in the SELECT statement.

【在 s***m 的大作中提到】
:
: You may want to do this.
: select f1,f2,f3,f5,sum(f4) from table1 Where blah....
: group by f1,f2,f3,f5;
: I am not sure you can include f5 after sum(f4).

l*********r
发帖数: 80
4
don't understand what is the question.
and don't understand why not just try it?

【在 a****c 的大作中提到】
:
: It should be fine that you put the sum() anywhere in the SELECT statement.

1 (共1页)
进入Database版参与讨论
相关主题
问个sql的问题吧,搞不出来了. (转载)SQL Server query 一问
Is Oracle ODBC support batch SQL(PL/SQL procedure)?请求SQL语句
这句SQL怎么写?求助:如何ColumName 作为变量放入query
ACCESS问题, 请教!SQL combine two tables into one table and add a new column
问个SQL问题- partial outer joinSQL copy a table into a new table and add a new column
one question on SQL新手请教SQL 语法问题- alias 和 join
网站遭受Hack, 有哪位知道如何处理?error of executing SQL query of string concatenation (转载
Rookie's question again问个SQL的问题
相关话题的讨论汇总
话题: f4话题: sum话题: select话题: f5话题: f2