Google News
logo
SQL - Interview Questions
Write an SQL query to show the last record from a table.
The following query will return the last record from the Worker table:
Select * from Worker where 
WORKER_ID = (SELECT max(WORKER_ID) from Worker);
Advertisement