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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ table file1.csv --join file2.csv --on 'id=product_id'
table ./test-data/table-format.out --sort "!available,id"
```

* Convert SELECT output into INSERT statements:
```bash
table select.txt --print 'INSERT INTO table (%{header}) VALUES (%{values(true)});'
```

* Diff two tables by the 'id' column:

```bash
Expand Down