Hi,
I have been trying to compare results of two queries using minus but i am getting the below error
Failure 2805 Maximum row length exceeded in abc
The query i'm using is
select * from abc
minus
select * from bcd
;
I found that UNION ALL works fine, but other operators like MINUS,UNION and INTERSET doesn't work.
The length of all the columns combined in both the tables doesn't exceed 5000.
Thanks in advance.
Sudeep.
↧