Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような 2 つの行があります。
a b val 2 3 43 2 3 32
出力したい
a b val 2 3 75=(43+32)
この操作をテーブル全体に適用したい。
おそらくsqliteで、SQLクエリを使用してこれを行うにはどうすればよいですか?
必要なだけのようですGROUP BY
GROUP BY
SELECT a, b, SUM(val) FROM YourTable GROUP BY a, b
集計クエリが必要です。
select a, b, sum(val) from t group by a, b