Avatar of Sean Strickland
Sean Strickland
Flag for United States of America

asked on 

Problem with SELECT TOP 1 query

I have a query where I am simply trying to get a single record returned from a table.  The following is very similar to what I have.  There are 145 items in the table, and it pulls all 145 instead of the first entry.

I have an ORDER BY statement (excluded) that sorts by date received for me.  The idea is to funnel these items into a bucket and pull them one by one.  Need the SELECT TOP 1 query as multiple users are working out of this at the same time.

SELECT TOP 1 tbl_Master_Items.FieldName, tbl_Master_Items.FieldName, tbl_Master_Items.FieldName, tbl_Master_Items.FieldName, tbl_Master_Items.FieldName, tbl_Master_Items.FieldName, tbl_Master_Items.FieldName, tbl_Master_Items.FieldName, tbl_Master_Items.FieldName
FROM tbl_Master_Items
Microsoft AccessSQL

Avatar of undefined
Last Comment
Sean Strickland

8/22/2022 - Mon