最初の列を除く行の合計を合計する必要があります。
似たようなもの:
SELECT SUM(col2 + col3 + col4 + colN)FROM数値WHERE 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
助けてくれてありがとう!