From 810674a44e421ec70fc152d1a6ba8e2f05a885fb Mon Sep 17 00:00:00 2001 From: Shayan Hashemi Date: Sat, 19 Oct 2024 02:31:48 +0300 Subject: [PATCH] add export tutorial --- tutorial/tutorial.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tutorial/tutorial.md b/tutorial/tutorial.md index 3b68463..b2b2502 100644 --- a/tutorial/tutorial.md +++ b/tutorial/tutorial.md @@ -157,8 +157,17 @@ ORDER BY area; If you need to return the table to its original state, you can use the `:reset` command. +## Exporting + +At any time during explorations, it is possible to export the current data frame to `csv`, `tsv`, `parquet`, `json`, `jsonl`, and `arrow` using the following command: + +```sql +:export +``` + ## Help Command To view all available commands and their descriptions, use the `:help` command. This command displays a list of all commands, along with their usage and examples. -![image not found](images/help.png) \ No newline at end of file +![image not found](images/help.png) +