Query that is a sourceof a table

  • Thread starter Thread starter Samuel
  • Start date Start date
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
 
In
Samuel said:
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?

What do you mean by "source of a table"? A table is a table, a query is
a query. Either could be the recordsource of a form or report.

Or do you mean that you are creating a new table from the results of the
query?

I'm puzzled.
 
In
Samuel said:
I refer to the source of the form!

I don't see anything wrong with that as the RecordSource of a form. I
don't see how you could have any problems because of it.
 

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

Similar Threads


Back
Top