Update 'README.md'

This commit is contained in:
divaldo 2018-10-11 20:50:57 +02:00
parent 4f94ad6b09
commit 77679bd8ee
1 changed files with 6 additions and 1 deletions

View File

@ -31,4 +31,9 @@ make
* Columns enclosed with nothing
* Columns escaped with nothing
* The query order: ch_id, time_sec, time_ns, peak_amp
* Ascending by time_sec and time_ns
* Ascending by time_sec and time_ns
Use this query:
```
SELECT ch_id, time_sec, time_ns, peak_amp FROM adatok.fb55 ORDER BY time_sec ASC, time_ns ASC INTO OUTFILE '/tmp/fb55_exp.csv' FIELDS TERMINATED BY ' ' ENCLOSED BY '' LINES TERMINATED BY '\n';
```