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.
这个问题是关于 MySQL 的。
我想知道我是否可以对单行中的一列求和,例如,我有一列写着“5 21 10”,而不是每个值一列(一个代表 5,一个代表 21,一个代表 10 ),我想在此列中以某种方式使用 SUM,它应该返回 36。
这是可能的 ?如果是,如何?
谢谢。
如果您知道列名,则只需选择它们的总和。
SELECT col1 + col2 + col3 FROM MyTable;