vote up 0 vote down star

In MySQL, you can use the keyword USING in a join when you join on columns from different tables with the same name. For example, these queries yield the same result:

SELECT * FROM user INNER JOIN perm USING (uid)
SELECT * FROM user INNER JOIN perm ON user.uid = perm.uid

Is there an equivalent shortcut in SQL Server?

flag

3 Answers

vote up 10 vote down check

nope, have to use:

SELECT * FROM user INNER JOIN perm ON user.uid = perm.uid
link|flag
vote up 1 vote down

Also, I would add not to use wild characters, "*" in your select statement - explicitly specify the column name.

link|flag
True but I was just going for a short query to exemplify the use of USING. The SELECT details here are irrelevant. – Dinah May 13 at 18:05
vote up 4 vote down

No, SQL Server does not support this kind of shortcut.

I would like to point out that even if it did, shortcuts like these are NOT A GOOD IDEA. I recently worked on a database where the developers thought it would be a good idea to use the *= and =* shortcuts for RIGHT JOIN and LEFT JOIN. Good idea until someone upgraded the SQL Compatibility level to 90. Then it became an extremely Bad Idea.

So, learn from us. Shortcuts are bad. A little extra typing never killed anyone.

link|flag
Did you mean *= and =*? SO uses asterisks for formatting. – Matt Solnit May 14 at 0:10
Yes, I meant = and = - Thanks Matt – Boo May 14 at 0:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.