http://www.techiecorner.com/1619/how-to-setup-mysqldump-without-password-in-cronjob/
Nhắc lại query tìm cột xuất hiện ở table nào trong DB:
SELECT *
FROM information_schema.COLUMNS
WHERE
TABLE_SCHEMA = 'db_name'
AND TABLE_NAME = 'table_name'
AND COLUMN_NAME = 'column_name'
Export data MySQL with condition:
mysql -e "select picture from post where picture like 'https://s3%'" -u username-p db_name > trump.txt
Lệnh trên dump hết picture (url) lưu trên amazon S3 ra file với điều kiện là URL ảnh phải bắt đầu = https://s3 (ko lẫn với các ảnh khác)
.
Nhắc lại query tìm cột xuất hiện ở table nào trong DB:
SELECT *
FROM information_schema.COLUMNS
WHERE
TABLE_SCHEMA = 'db_name'
AND TABLE_NAME = 'table_name'
AND COLUMN_NAME = 'column_name'
Export data MySQL with condition:
mysql -e "select picture from post where picture like 'https://s3%'" -u username-p db_name > trump.txt
Lệnh trên dump hết picture (url) lưu trên amazon S3 ra file với điều kiện là URL ảnh phải bắt đầu = https://s3 (ko lẫn với các ảnh khác)
.
Comments
Post a Comment