X
xialie via AccessMonster.com
Hello!
I am an access novice, can anyone pls help me with this?
I have two tables.
Table A contains UNICODE values (20254 rows of hexadecimal numbers) and other
stuff.
Table B contains 5707 rows of UNICODE values of the same format, ordered
differently.
In both tables, the datatype is TEXT.
I KNOW that ALL the rows in table B have corresponding values in table A.
Now, the following simple query yields only one row (the 5698th row in table
2 and the 17905th in table 1).
SELECT TAB1.*, TAB2.*, TAB1.unicode
FROM TAB1 INNER JOIN TAB2 ON TAB1.unicode = TAB2.unicode;
How do get ALL the results?
Thank you!
I am an access novice, can anyone pls help me with this?
I have two tables.
Table A contains UNICODE values (20254 rows of hexadecimal numbers) and other
stuff.
Table B contains 5707 rows of UNICODE values of the same format, ordered
differently.
In both tables, the datatype is TEXT.
I KNOW that ALL the rows in table B have corresponding values in table A.
Now, the following simple query yields only one row (the 5698th row in table
2 and the 17905th in table 1).
SELECT TAB1.*, TAB2.*, TAB1.unicode
FROM TAB1 INNER JOIN TAB2 ON TAB1.unicode = TAB2.unicode;
How do get ALL the results?
Thank you!