Is it more advantagous to use SQL from a table to supply data to a control
on a form as in the sql statement below:
SELECT DISTINCT flkp1.Field1 FROM flkp1;
Or sql from a query as below:
SELECT DISTINCT qry1.Field FROM qry1;
Is one faster the other? Any other reasons to use one over the other?
on a form as in the sql statement below:
SELECT DISTINCT flkp1.Field1 FROM flkp1;
Or sql from a query as below:
SELECT DISTINCT qry1.Field FROM qry1;
Is one faster the other? Any other reasons to use one over the other?