How to export data as csv from snowsight?

Viewed 32

I am using snowsight to access my snowflake database. I searched the snowsight docs on how to export table as csv but unable to find that option. Does anyone know if we can export table as csv from snowsight?

1 Answers

You can run

select * from <table-name>;

and export the output in CSV, as shown below:

enter image description here

Related