You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's currently no implementation of a set intersection between tables, which seems like it would be needed in the future for compatibility with sql interfaces, for example
There's currently no implementation of a set intersection between tables, which seems like it would be needed in the future for compatibility with sql interfaces, for example
SELECT column1 [, column2 ]
FROM table1 [, table2 ]
[WHERE condition]
INTERSECT
SELECT column1 [, column2 ]
FROM table1 [, table2 ]
[WHERE condition]
I would imagine the syntax would be along the lines of (with table being a TableExpr):
also with an option for distinct
The text was updated successfully, but these errors were encountered: