Should dialect:mssql
have an effect on natural joins?
#729
-
This is a really awesome tool! Starting as a question as I don't know if this is intended behavior or not.
has the output below (playground and SELECT
employees.*,
jobs.*,
employee_id
FROM
employees
JOIN jobs USING(employee_id) As far as I know (just based on usage and some Googling),
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, thank you for pointing this out and sorry for late response. Fortunately, we are changing behavior for all dialects from We are (well, at least I am) more focused on postgres dialect, only because it's the one I'm familiar with. If you find any more mismatches between dialects, please do report them. |
Beta Was this translation helpful? Give feedback.
Hello, thank you for pointing this out and sorry for late response.
Fortunately, we are changing behavior for all dialects from
USING(x)
toON(left.x = right.x)
in an upcoming release.We are (well, at least I am) more focused on postgres dialect, only because it's the one I'm familiar with. If you find any more mismatches between dialects, please do report them.