开发者

SQL - Add up all row-values of one column in a singletable

开发者 https://www.devze.com 2022-12-26 09:45 出处:网络
I\'ve got a question regarding a SQL-select-query: The table contains several columns, one of which is an Integer-column called \"size\" - the task I\'m trying to perform is query the table for the su

I've got a question regarding a SQL-select-query: The table contains several columns, one of which is an Integer-column called "size" - the task I'm trying to perform is query the table for the sum of all rows (their values), or to be more exact get a artifical column in my ResultSet called "overallSize" which contains the sum of all "size"-values in the table开发者_运维问答. Preferable it would be possible to use a WHERE-clause to add only certain values ("WHERE bla = 5" or something similar).

The DB-engine is HSQLDB (HyperSQL), which is compliant to SQL2008.

Thank you in advance :)


SELECT SUM(size) AS overallSize FROM table WHERE bla = 5;


It's not as simple as this, is it?

SELECT SUM(SIZE)
FROM Table
WHERE bla = '5'


Are you looking for:

SELECT SUM(Size) FROM MyTable WHERE bal = '5'

You can also (in MSSQL)

SELECT Size, COl1, COl2 FROM MyTable WHERE bla ='5' COMPUTE SUM(Size)
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号