我在使用 Postgres 中的计算列时遇到了麻烦。下面给出了在 SQL 中工作的类似代码,是否可以在 PostgreSQL
中重新创建此代码?
select cost_1, quantity_1, cost_2, quantity_2,
(cost_1 * quantity_1) as total_1,
(cost_2 * quantity_2) as total_2,
(calculated total_1 + calculated total_2) as total_3
from data;
在 PostgreSQL
中,类似的代码返回以下错误:
列 total _ 1和 total _ 2不存在。