A
Arvi Laanemets
Hi
The query below returns no records
SELECT a.QueryDate, a.DeviceID, a.LastTransactDate As TransactDate, b.TabN
FROM qUserDevices0 AS a, tblTransactions b WHERE b.DeviceID=a.DeviceID And
b.TransactDate=a.LastTransactDate;
The same query without field b.TabN returns excepted amount of rows
SELECT a.QueryDate, a.DeviceID, a.LastTransactDate As TransactDate
FROM qUserDevices0 AS a, tblTransactions b WHERE b.DeviceID=a.DeviceID And
b.TransactDate=a.LastTransactDate;
The field TabN in table tblTransactions is a text field, and contains both
text and numeric strings, like
"Xxxx9999", or "333". (The numeric string values are imported from our staff
management program, and are updated from there, text string values are
created, managed, and updated in my Access application locally). That the
query was unable to create any rows with TabN as returned filed, was a quite
a bad surprise for me. And using a concantenation expression ("" & b.TabN)
was for no good too.
Has someone here encountered such a problem, and find some solution for it?
Thanks in advance!
The query below returns no records
SELECT a.QueryDate, a.DeviceID, a.LastTransactDate As TransactDate, b.TabN
FROM qUserDevices0 AS a, tblTransactions b WHERE b.DeviceID=a.DeviceID And
b.TransactDate=a.LastTransactDate;
The same query without field b.TabN returns excepted amount of rows
SELECT a.QueryDate, a.DeviceID, a.LastTransactDate As TransactDate
FROM qUserDevices0 AS a, tblTransactions b WHERE b.DeviceID=a.DeviceID And
b.TransactDate=a.LastTransactDate;
The field TabN in table tblTransactions is a text field, and contains both
text and numeric strings, like
"Xxxx9999", or "333". (The numeric string values are imported from our staff
management program, and are updated from there, text string values are
created, managed, and updated in my Access application locally). That the
query was unable to create any rows with TabN as returned filed, was a quite
a bad surprise for me. And using a concantenation expression ("" & b.TabN)
was for no good too.
Has someone here encountered such a problem, and find some solution for it?
Thanks in advance!