Difference between revisions of "Microsoft Access OLE DB — Microsoft Access"

From database24
Jump to navigation Jump to search
(Initial)
 
(No difference)

Latest revision as of 15:57, 8 November 2016

Microsoft Access

This allows you to easily refer to other database tables and queries without the need to create a linked table.

The database can be specified by the use of the IN clause

SELECT *
  FROM tblTable 
    IN 'c:\source.mdb'

or by applying square brackets around the database path and prefixing the referenced table with it

SELECT *
  FROM [c:\source.mdb].tblTable