Viewing 2 posts - 1 through 3 (of 3 total)
Sure here is an example you could tweak to work in your case:
SELECT *
FROM employee INNER JOIN department
USING (DepartmentID);
The...
March 8, 2011 at 9:18 am
#1295957
Thanks for the reply.
From what I was reading it seems as though the USING syntax worked back in version 7 and Sql Server 2000 based on an older...
March 8, 2011 at 8:14 am
#1295904