我有一個表命名爲calcu
SQL行明智的總價值
id date name s1 s2 s3 s4 min_value
1 02/10/2017 dicky 7 4 8 9 4
2 02/10/2017 acton 12 15 17 19 15
3 02/10/2017 adney 28 13 19 10 13
This is my table in SQL Fiddle
我需要row wise total value
。我的意思是在新列total
中,它將是(s1 + s2 + s3 + s4)即(7 + 4 + 8 + 9)= 28 where id=1
,(12 + 15 + 17 + 19)= 63 where id=2
,(28 + 19 + 10)= 70 where id=3
。
結果將是象下面這樣:
id date name s1 s2 s3 s4 min_value Total
1 02/10/2017 dicky 7 4 8 9 4 28
2 02/10/2017 acton 12 15 17 19 15 63
3 02/10/2017 adney 28 13 19 10 13 70
它導致所有總161個3行成爲1行。
如何編寫SQL查詢?
提示:'S1 + S2 + S3 + d4'。 –