Jan 26, 2007 #1 cymerman MIS Jan 9, 2007 16 US How do I select the last 5 rows of a table ? I have to use "order by" I guess. If this is not possible. How do I select just 5 rows (any rows) of that table ?
How do I select the last 5 rows of a table ? I have to use "order by" I guess. If this is not possible. How do I select just 5 rows (any rows) of that table ?
Jan 26, 2007 #2 shhankar Programmer Apr 15, 2003 14 US Use " select first 5 * from <table name> order by <colname> desc Upvote 0 Downvote