I want to select the last 5 records from a table in SQL Server without arranging the table in ascending or descending order.
Without an order, this is impossible. What defines the "bottom"? The following will select 5 rows according to how they are stored in the database.
SELECT TOP 5 * FROM [TableName]