Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Import and export of mysql data table structure

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

derived mysqldump -h localhost -u root -p -P -d dbname > db.sql

Command line usage is as follows: mysqldump -h remote-u user name-p password-P port-d database name table name sql statement;

* 1. Export the table structure of database dbname (where user name is root, password is dbpasswd, sql statement generated db.sql) mysqldump -uroot -pdbpasswd -d dbname > b.sql;* 2. export database dbname a table (test) structure mysqldump -uroot -pdbpasswd -d dbname test > db.sql;* 3. Export database dbname All table structures and table data (without-d) mysqldump -uroot -pdbpasswd dbname > db.sql;* 4. Export database dbname a table (test) structure and table data (without-d) mysqldump -uroot -pdbpasswd dbname test > db.sql; import mysql -h 127.0.0.1-P 3306 -uroot -pdbpasswd dbname < db.sql

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report