Limitations on JOIN on views
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
A JOIN on a view that is created with a UNION clause is not supported.
Example
CREATE VIEW sampleView as SELECT deptno FROM emp UNION
SELECT deptno FROM dept;
SELECT * FROM sampleView s1, sampleView s2;