在包含列 'id'、'action_type'、'action_heading' 和 'tbl_transaction' 表的上下文中“action_amount”,可以生成所需的结果列“收入金额”和“费用金额”使用有条件填充这些列的 SQL 查询。
该查询利用 CASE 语句的功能来评估“action_type”的值,并将相应的“action_amount”分配给“venue_amt”或“expense_amt”列。
SELECT id, action_heading, CASE WHEN action_type = 'Income' THEN action_amount ELSE NULL END AS income_amt, CASE WHEN action_type = 'Expense' THEN action_amount ELSE NULL END AS expense_amt FROM tbl_transaction;
结果将是列“venue_amt”和“expense_amt”根据“action_type”中的“收入”或“支出”值正确填充金额。
ID Heading Income Amt Expense Amt 1 ABC 1000 - 2 XYZ - 2000
以上是如何使用 CASE 语句填充 MySQL 中的条件列?的详细内容。更多信息请关注PHP中文网其他相关文章!