select status_a,status_b from test
如何使用 oracle 解码函数 a 解码以下值status_a
以及status_b
status_a 或 status_b 的值之一是否为空。
if status_a='Y' and status_b='Y' then 'Y'
if status_a='Y' and status_b='N' then 'N'
if status_a='N' and status_b='Y' then 'N'
if status_a='N' and status_b='N' then 'N'
问候,
柴图哈拉