Employee table has ID and NAME columns. Names can be repeated. I want to find out if there is at least one row with name like \'kaushik%\'.
So query should return true/f
select 1 where exists ( select name from employee where name like 'kaushik%' )