select limit ms sql

Solutions on MaxInterview for select limit ms sql by the best coders in the world

showing results for - "select limit ms sql"
Claudio
02 May 2018
1-- select column from table limit 10;
2select top 10 column from table;
Alessia
10 May 2017
1select top 10 column from table;