Hi Guys,
I have written a view like
create view w1
as
Select eno,ename
from Emp
union
select eno,emane
from Emp1
But while executing i got the below error message.
Server Message: Number 197, Severity 15
Server 'DEV', Line 4:
Set operators may not appear within the definition of a view.
what is the problem ?
Inputs are welcome !