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
schema s1(id:ty0, ??);
table Products(s1);
table Inventory(s1);
query q1
`
SELECT id as p_id
FROM Products
EXCEPT
SELECT id as i_id
FROM Inventory
`;
verify q1 q1;
The above query will cause a syntax error on the id in the second SELECT line.
The text was updated successfully, but these errors were encountered:
The above query will cause a syntax error on the
id
in the secondSELECT
line.The text was updated successfully, but these errors were encountered: