If that is all the data you have, the answer is you don't. You will need to arrange for this by adding a datetime column that defaults to sysdatetime() or similar.
last extracted date and change date
Shambhu Rai
1,411
Reputation points
Hi Expert,
Have loaded data in table for 2 times in a week without date dimension table or last extracted date ... how will i identify last refresh date and current refresh date in sql server
create table emp(employee varchar(23),Age varchar(23),Salary varchar(23))
insert into emp('Test1','23','10')
insert into emp('Test2','25','20')
insert into emp('Tes3','27','30')