Mirror

Select first five records from table (Views: 714)


Problem/Question/Abstract:

How to select first five records from table

Answer:

I know that SQL looks like easy thing but sometimes we face some problems, try this solvation.

SELECT TOP 5 Field1, Field2, ....FROM Table1...

<< Back to main page