S
Simon Purdy
Hi
Interesting issue here.
Was working with the following SQL statement in Access 2003:-
SELECT a.Text
FROM (SELECT NOTES.Text
FROM PEOPLE INNER JOIN NOTES ON
PEOPLE.Client_Id = NOTES.Client_Id AND PEOPLE.Contact_Number =
NOTES.Contact_Number) a
GROUP BY a.Text
NOTES.Text is a Memo field as it may store more than 255 Characters.
On running the query the Text field returns 2 unicode characters, it is my
belief that this is a 32 bit address for where the Note is stored. If the
Join is removed from the internal Select statement the returned Text field
is expected.
The above statement was cut down from a much longer statement in the form
it's used in.
Anybody else seen this and is there any solutions (I am unable to change the
structure of the SQL Statement unfortunately).
Many Thanks.
Si
Interesting issue here.
Was working with the following SQL statement in Access 2003:-
SELECT a.Text
FROM (SELECT NOTES.Text
FROM PEOPLE INNER JOIN NOTES ON
PEOPLE.Client_Id = NOTES.Client_Id AND PEOPLE.Contact_Number =
NOTES.Contact_Number) a
GROUP BY a.Text
NOTES.Text is a Memo field as it may store more than 255 Characters.
On running the query the Text field returns 2 unicode characters, it is my
belief that this is a 32 bit address for where the Note is stored. If the
Join is removed from the internal Select statement the returned Text field
is expected.
The above statement was cut down from a much longer statement in the form
it's used in.
Anybody else seen this and is there any solutions (I am unable to change the
structure of the SQL Statement unfortunately).
Many Thanks.
Si