D
D
Hi:
Can you please tell me how can I modify this query to identify these 'pairs':
1234A and 1234B; the below query is working when I have 1234A and 1234AX;
the characters before X; or in the first case before A and B are the same.
Thank you,
Dan
****
SELECT A1.DEALNO, B1.DEALNO
FROM test AS A1 INNER JOIN test AS B1 ON B1.DEALNO = A1.DEALNO & "B";
Can you please tell me how can I modify this query to identify these 'pairs':
1234A and 1234B; the below query is working when I have 1234A and 1234AX;
the characters before X; or in the first case before A and B are the same.
Thank you,
Dan
****
SELECT A1.DEALNO, B1.DEALNO
FROM test AS A1 INNER JOIN test AS B1 ON B1.DEALNO = A1.DEALNO & "B";