sql - How to add decode inside of the WHERE condition? -


the inside of decode add condition? example:

where decode (id, 'a', name not in ('b'), name not in('c') 

so please give solution...

maybe can change in this, without having use decode

   (id='a' , name not in ('b')) or name not in ('c') 

Comments

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -