table에 id 와 password 필드가 존재합니다.
예를 들어
id password
a 1111
b 2222
null 3333
제가 필요한 질의는 질의의 key가 id+password 의 형태입니다.
b2222 로 질의해도 3333 으로 질의해도 결과가 나오도록 한방에 얻고 싶습니다.
부탁드립니다.
select table1.* from
(
select
case when id is null
then password
else id || '' || password
end as ttt
) as table1 where ttt = '데이터';
이렇게 하면 되더군요..