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
SELECTt1.col1, t2.col2FROM t1
JOIN t2 USING (col1);
this is triggering:
(HIGH RISK) (QUERY ANTI-PATTERN) JOIN Without Equality Check
● Use = with JOIN:
JOIN should always have an equality check to ensure proper scope of records.
I would think that USING would be an equality check as the field values have to match for the join.
The text was updated successfully, but these errors were encountered:
When doing a join with a using such as:
this is triggering:
I would think that USING would be an equality check as the field values have to match for the join.
The text was updated successfully, but these errors were encountered: