答案 0 :(得分:0)
听起来你想要制作所有列的SUM
。
没有“技巧”自动执行,您必须列出它们:
SELECT SUM(col1 + col2 + col3...) as sum
FROM table1
ORDER BY id DESC LIMIT 1; -- since you want only the last ID
答案 1 :(得分:0)
使用ORDER BY
和LIMIT 1
而不聚合:
SELECT (col1 + col2 + col3...)
FROM table1
ORDER BY id DESC
LIMIT 1;
这假设您的表中没有重复id
。对于名为id
的列来说,这似乎是一个合理的假设。