sql - OR operation between columns in SELECT query in Oracle -


i wonder if possible use or operation between columns in select query?

select    first_name,    last_name     employee     (first_name or last_name)='&enter_search_string'; 

just preference:

select first_name,  last_name  employee  '&enter_search_string' in (first_name, last_name) 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -