Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Support queries of the form:
create table r1(a int); create table r2(b); select a, b from r1 join r2 on a = b
This becomes more useful in old style syntax:
select a, b from r1, r2 where a = b