I'm looking at a section of "A Guide to the SQL Standard" (C.J.Date/Hugh Darwen) concerning LEFT JOIN and it gives the following syntax:
table-reference [ NATURAL ] outer-join-type
                            JOIN table-reference
                           [ ON conditional-expression   
                           | USING ( column-commalist ) ]
What is USING?
Is it useful?
Is it implemented in SQL-Server?
 
     
    