Hi @Akshay_Petkar ,
This is simple in Databricks SQL, just uncheck LIMIT 1000 in the drop down.
https://docs.databricks.com/en/sql/get-started/visualize-data-tutorial.html
Limit 1000 is selected by default for all queries to ensure that the query returns at most 1000 rows. If a query is saved with the Limit 1000 setting, this setting applies to all executions of the query (including within dashboards). If you want to return all rows for this query, you can unselect LIMIT 1000 by clicking the Run (1000) drop-down. If you want to specify a different limit on the number of rows, you can add a LIMIT
clause in your query with a value of your choice.
The query result displays in the Results tab.
Same way in notebook you can click on download full results.
But it won't preview the entire data on the UI.