Can only tell me how I would write a query similar to this one.
SELECT TOP 1 RecordNumber
FROM X
ORDER BY RecordNumber DESC
The query works with SQL Server but it does not seem to work with MySQL.
I want to get the very last record put into the database.
Thanks in advance.
AJ
SELECT TOP 1 RecordNumber
FROM X
ORDER BY RecordNumber DESC
The query works with SQL Server but it does not seem to work with MySQL.
I want to get the very last record put into the database.
Thanks in advance.
AJ