Oct 14, 2003 #1 gio2888 Technical User Oct 26, 2000 64 US Is there any way to force a select statement to only return 1 row of results? Thanks in advance
Oct 14, 2003 #2 JohnDTampaBay Programmer Jul 12, 2002 986 US You can use Code: SELECT TOP 1 <column_list> ... to ensure that only a single row is returned in the result set. --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding. Upvote 0 Downvote
You can use Code: SELECT TOP 1 <column_list> ... to ensure that only a single row is returned in the result set. --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding.