Inner Join with Hex index

  • Thread starter xialie via AccessMonster.com
  • Start date
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!
 
L

Lord Kelvan

well for one you can remove the tab1.unicode from the select and are
you sure that the values in table b are exatally the same as the
values in table a can you paste a few sample unicodes from table a and
a few of the corresponding ones in table b because that should
therotically work
 
X

xialie via AccessMonster.com

Thank you!

Xialie


Lord said:
well for one you can remove the tab1.unicode from the select and are
you sure that the values in table b are exatally the same as the
values in table a can you paste a few sample unicodes from table a and
a few of the corresponding ones in table b because that should
therotically work
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top