Answers for "ms sql limit"

SQL
0

select limit ms sql

-- select column from table limit 10;
select top 10 column from table;
Posted by: Guest on May-14-2021
0

select limit ms sql

select top 10 column from table;
Posted by: Guest on May-14-2021
-1

How to display top 50 rows?

In MySQL, top 50 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0, 50;
Posted by: Guest on December-22-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language