一般來說,mysqldump 會出 dbname.mytable
的語法大致如下:
mysqldump dbname mytable -u root -p
如果 table 中的資料太多,只想匯出較新的項目,如 id
大於特定數值,則可使用 --where
:
mysqldump dbname mytable \ --where 'id > 10000' \ -u root -p
--where
使用時要注意引號,如果有字串時記得要 escape 掉
軟體開發、伺服器和生活瑣事
This EPUB version documentation is convert from MariaDB documentation PDF at 2022/04/29. Download MariaDB Server Knowledge Base EPUB here if needed.
ps. document convert by Epubor Ultimate automatically.