Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion use-the-built-in-sql-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ INSERT 2

### Run external commands from the SQL shell

In this example, we use `\!` to look at the rows in a csv file before creating a table and then using `\|` to insert those rows into the table.
In this example, we use `\!` to look at the rows in a CSV file before creating a table and then using `\|` to insert those rows into the table.

{{site.data.alerts.callout_info}}This example works only if the values in the CSV file are numbers. For values in other formats, use an online CSV-to-SQL converter or make your own import program.{{site.data.alerts.end}}

~~~ sql
> \! cat test.csv
Expand Down