R
R. Smith
How do I make query's in MS-Acces that use case
sensitivity to compare values in two different
tables 'adresses' and 'streets'.
For example:
SELECT adres
FROM adresses
WHERE street IN
(SELECT streetname FROM streets);
I have a table with adresses that with different types of
streetnames. Like "BAKER STREET" and "Baker Street" which
I would like to compare with a straat name table that
contains the proper names. So I only want to select "Baker
Street" and not "BAKER STREET".
How do I achieve this?
sensitivity to compare values in two different
tables 'adresses' and 'streets'.
For example:
SELECT adres
FROM adresses
WHERE street IN
(SELECT streetname FROM streets);
I have a table with adresses that with different types of
streetnames. Like "BAKER STREET" and "Baker Street" which
I would like to compare with a straat name table that
contains the proper names. So I only want to select "Baker
Street" and not "BAKER STREET".
How do I achieve this?