select top 100 id from table_name;
rows returned: 100
id
1
2
3
4
5
6
7
8
9
10
all of my queries only show a max of 10 rows returned. How do I get it to show all expected rows returned?
select top 100 id from table_name;
rows returned: 100
id
1
2
3
4
5
6
7
8
9
10
all of my queries only show a max of 10 rows returned. How do I get it to show all expected rows returned?
found my answer- add this line to the sublime settings “rows_per_sql_table”: 1000