fetch data from table
Database
3
Posts
3
Posters
0
Views
1
Watching
-
hi, i am using MSSQL as my backend, i want to fetch top 3 students from the Student table.Plz help me Senthil
-
hi, i am using MSSQL as my backend, i want to fetch top 3 students from the Student table.Plz help me Senthil
-
hi, i am using MSSQL as my backend, i want to fetch top 3 students from the Student table.Plz help me Senthil
use top operator. SELECT TOP 3 from table [order by field]. Please note order by clause is optional and if require use it. Amit