Mysql
 sql >> Database >  >> RDS >> Mysql

BASH MySQL Query su file separati da virgole

Eseguire quanto segue:

echo "SELECT CONCAT_WS(',', ${MYSQLTABLE}.created_at, ${MYSQLTABLE}.product_options) FROM ${MYSQLTABLE} WHERE ${MYSQLTABLE}.product_id=1 ORDER BY ${MYSQLTABLE}.created_at" | \
mysql ${MYSQLOPTS}  | tr '\t' ',' > ${MYSQLDUMP}

Il tr il comando sostituisce un carattere con un altro.