S
Samuel
I use the following query as a source of a table:
SELECT tblClientDetails.*
FROM tblClientDetails
ORDER BY tblClientDetails.strClientNo;
Is it possible that since I started using this instead of using the table as
the source I started having problems because of that, to me it seems
absolutely fine and I wonder if anyone thinks that I should call the fields
separately or else?
Thank you,
Samuel
SELECT tblClientDetails.*
FROM tblClientDetails
ORDER BY tblClientDetails.strClientNo;
Is it possible that since I started using this instead of using the table as
the source I started having problems because of that, to me it seems
absolutely fine and I wonder if anyone thinks that I should call the fields
separately or else?
Thank you,
Samuel