We have a table called CONTACT_INFO that has a column COMMENTS of type LONG.
These queries work fine:
select comments from contact_info;
select comments from contact_info where rownum <= 3;
However, this query throws ORA-00997:
select comments from contact_info fetch next 3 rows only;
Why?