Hi what's the equal word for "join on " from sql for access , using in query about joining tables.
thanks
| SitePoint Sponsor |
Hi what's the equal word for "join on " from sql for access , using in query about joining tables.
thanks


the same as other databases
except that in access, the keyword INNER is not optional
Code:select foo , bar , qux from table1 inner join table2 on table1.id = table2.id1
Bookmarks