Link to home
Start Free TrialLog in
Avatar of Mark01
Mark01Flag for United States of America

asked on

MS Access Query

I need help writing a query. There are three fields from three tables involved: File from the Files table, Path from the Paths table and Extension from the File Types table. The result of combining the three fields will look like the following:

c:\images\image1.tif

The full path and file information “c:\images\image1.tif” has to appear in a single record. Any advice about how write the query will be greatly appreciated.
ASKER CERTIFIED SOLUTION
Avatar of Jim Dettman (EE MVE)
Jim Dettman (EE MVE)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mark01

ASKER

@Jim, “FullPath: [Path] & "\" & [File] & "." & [Extension]” worked. Thank you.