Created
May 12, 2015 19:59
-
-
Save kissmygritts/9cf08fc76e7193d86334 to your computer and use it in GitHub Desktop.
Join two tables on a concatenated field using Microsoft Access SQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT [dc].[WHno] & "." & [dc].[CapDate] AS j1, [lw].[WHno] & "." & [lw].[CapDate] AS j2 | |
FROM data_Capture AS dc INNER JOIN lab_Waddl AS lw ON ([dc].[WHno] & "." & [dc].[CapDate]) = ([lw].[WHno] & "." & [lw].[CapDate]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment