我需要对除第一列之外的一行的总数求和。
也有类似的东西:
从数字中选择总和(col2 + col3 + col4 +colN),其中 user_name = 'person';
我的表将不断添加列。所以我希望它也自动获取新列的总和,而无需将其硬编码到查询中?
user_name | Col | col2 | Col3 | Col4 + other columns.
person1 | 2 | 3 | 76 | 56 etc. ---------> sum of row
person2 | 6 | 72 | 200 | 13 etc. ---------> sum of row
提前感谢您的帮助!