I have one table called “Mydata”
with date,name,address columns
this table is having more than 5000 records now i dont want to view all 5000 records
I just want to view recently added 100 records,
how can i do that I tried with
select top 100 * from Mydata
But which is not giving me recently added records
I have one table called Mydata with date,name,address columns this table is having more
Share
For
TOP 100 *to work as you desire, you need to specify the order in which to return the records. Use the example below and replace[YourField]with whatever column determines the order in which the records were inserted.