小编典典

如何在MySQL中为字段或列添加别名?

mysql

我正在尝试做这样的事情。但是我收到一个未知的列错误:

SELECT SUM(field1 + field2) AS col1, col1 + field3 AS col3 from core

基本上,我只想使用别名,这样就不需要执行之前执行的操作。在mysql中这可能吗?


阅读 769

收藏
2020-05-17

共1个答案

小编典典

考虑使用子查询,例如:

SELECT col1
,      col1 + field3 AS col3 
FROM   (
       SELECT  field1 + field2 as col1
       ,       field3
       from    core
       ) as SubQueryAlias
2020-05-17