What is the most efficient way to read the last row with SQL? The table is indexed on a unique key--the "bottom" key values represent the last row.
Edit: This is for SQL Server.
Thank you
rp
|
|
What is the most efficient way to read the last row with SQL? The table is indexed on a unique key--the "bottom" key values represent the last row. Edit: This is for SQL Server. Thank you rp
|
|||
|
|
|
|
If you're using MS SQL, you can try:
|
||
|
|
|
|
You'll need some sort of uniquely identifying column in your table, like an auto-filling primary key or a datetime column (preferably the primary key). Then you can do this:
The |
||||||
|
|
|
|
||
|
|
|
|
In order to retrieve the last row of a table for MS SQL database 2005, You can use the following query: select top 1 column_name from table_name order by column_name desc; // Note: To get the first row of the table for MS SQL database 2005, You can use the following query: select top 1 column_name from table_name; |
||
|
|