I was using INNER JOIN mostly with "ON table1.id = table2.id" syntax but i can see that MySQL supports the shorter "USING(id)" notation. However I would like to use a SQL compatible syntax. Is USING part of any SQL standard specs ? Couldn't find any info on MySQL manual...
AMn