1
我想從PostgreSQL中查詢創建兩個新的欄目,一個,另一個depnding對新列,即根據現有的數據創建依賴PostgreSQL的2分新的條件列
existing_col new_col new_col2
a 1 2
b 0 0
我曾嘗試:
select existing_col,
case when existing_col like 'a' then 1 else 0 end as new_col
case when new_col like 1 then 2 else 0 end as new_col2
from table
但是,這是給我的錯誤,new_col不存在,我怎麼能做到這一點?
你缺少'end'案例 –
有糾正錯誤仍然無效。 – user124123
您不能在引入別名的同一級別引用'new_col' –