I have a query that sorts records in descending order where
fielda fieldb
100 9911300704
100 9911300703
100 9911300702
I would like to use that query to create a temporary table that can be used in the FROM clause of another query, which does a DISTINCT fieldA to select only the first first record. Does the temp table strategy make sense? If so, how would one do that? Thanks, Dan.
fielda fieldb
100 9911300704
100 9911300703
100 9911300702
I would like to use that query to create a temporary table that can be used in the FROM clause of another query, which does a DISTINCT fieldA to select only the first first record. Does the temp table strategy make sense? If so, how would one do that? Thanks, Dan.