When I run a query in Azure Data Studio, instead of writing limit keyword everytime in the query. Is it possible to set the default value to some number , so that Results windows shows only that number of rows from the top. As of now it is displaying all the records which takes quite some time for some tables.
select * from Table limit 200; // I don't want to use limit keyword everytime.