Home Database Mysql Tutorial mysql数据库的备份以及表格数据之间的复制

mysql数据库的备份以及表格数据之间的复制

Mar 31, 2017 pm 05:03 PM
mysql backup tabular data

mysql数据库的备份以及表格数据之间的复制_MySQL

#####-------------mysql数据备份以及表间数据的复制-------------------#####
##----------------我的mysql学习(二)--------------------------###
##mysql数据的导入和导出--这里承接上一部分
#导出全部数据库该操作在mysql命令行外进行:
导出数据格式如下:

mysqldump -hlocalhost -uroot -p databasename tablename > filename.sql
Copy after login

#预输入sql命令:

mysqldump -uroot -p --default-character-set=gbk mydb > E:/mydb.sql
Copy after login

#弹出输入密码提示,输入密码即可导出数据库。.sql文件中不包含创建数据库的语句
#有的仅仅是对表的操作。

C:/Users/trsli>mysqldump -uroot -p --default-character-set=gbk mydb > E:/myd
b.sql
Enter password: ****
Copy after login

#导出成功数据库,我们将数据库重新导入MySQL中,实现方法如下所示:
首先需要重新建立一个数据库,或者用已经存在的数据库,这里新建一数据库:

#create database mydb1 default character set gbk;
Copy after login

然后进行如下操作导入数据库

C:/Users/trsli>mysql -uroot -p mydb1 < E:/mydb.sql
Enter password: ****
Copy after login

或者在mydb1下直接用如下命令:

source E:/mydb.sql
Copy after login

#两种方式效果一样,现在检查mydb1中是否存在该表已经表中是否有数据。

mysql> use mydb1;Database changedmysql> 
show tables;
+-----------------+| Tables_in_mydb1 |+-----------------+| mytable 
|+-----------------+1 row in set (0.00 sec)
mysql> 
select * from mytables;
+----+--------+-------+
| id | name | count |
+----+--------+-------+
| 1 | 张三 | 1000 |
| 2 | 李四 | 500 |
| 3 | 王老虎 | 100 |
| 4 |
 赵大 | 1000 |
 | 5 | 王二小 | 500 |
 | 6 | 三亚子 | 100 |
 +----+--------+-------+
Copy after login

6 rows in set (0.00 sec)
#该数据与数据库mydb数据库中显示一致。
#在数据库众多的表中,如果我们只需要导出某一张表格,那么我们可以进行如下操作:

mysqldump -uroot -p mydb1 mytable > E:/mydb1.sql
C:/Users/trsli>mysqldump -uroot -p mydb1 mytable > E:/mydb1.sqlEnter password: ****
Copy after login

#在导出数据过程中有一些参数如:-d --add-drop-table,这里看一下有什么效果:
#这里只添加-d:

C:/Users/trsli>mysqldump -uroot -p -d mydb1 mytable > E:/mydb2.sql
Enter password: ****
Copy after login

#在导出的文件中会少了插入数据的sql语句,只有创建表的sql语句存在。
################------>.sql文件中德语句

LOCK TABLES `mytable` WRITE;
/*!40000 ALTER TABLE `mytable` DISABLE KEYS */;
INSERT INTO `mytable` VALUES (1,&#39;张三&#39;,1000),(2,&#39;李四&#39;,500),(3,&#39;王老虎&#39;,100)
,(4,&#39;赵大&#39;,1000),(5,&#39;王二小&#39;,500),(6,&#39;三亚子&#39;,100);
/*!40000 ALTER TABLE `mytable` ENABLE KEYS */;
UNLOCK TABLES;
################----->该区域sql语句将不会显示
Copy after login

#下面添加--add-drop -table语句:

C:/Users/trsli>mysqldump -uroot -p --add-drop-table mydb1 mytable > E:/mydb3
.sql
Enter password: ****
Copy after login

#该结果与未添加差不多,也许个人观察不够仔细。
#最后同时添加:-d --add-drop-table查看效果

C:/Users/liyuanjie>mysqldump -uroot -p -d --add-drop-table mydb mytable > E:/myd
b3.sql
Enter password: ****
Copy after login

#该效果与只添加-d一致
####-----------------以上方式可用于数据库备份----------------####

####-----------------以下是批量添加表数据的操作--------------####
#这些在网上都有现成的范例,但是我觉得只有自己亲手做过才能算是真的明白所以有了以下的操作
#这里要做的就是关于表中数据的复制,上面我们介绍过通过.txt文本添加数据,这里介绍表格间复制数据:
#现在创建一个新的表:mytab

mysql> create table mytab(
-> id int primary key auto_increment,
-> name varchar(20) not null,
-> age int not null,
-> salary int not null
-> )type=InnoDB;
Query OK, 0 rows affected, 1 warning (0.07 sec)
Copy after login

#给该表添加4个字段
#这里用前面介绍的文件导入数据方式向空表mytab中添加数据
#load data local infile 'E:/mydb.txt' into table mytab(name,salary,age);

mysql> load data local infile &#39;E:/mydb.txt&#39; into table mytab(name,salary,age);
Query OK, 3 rows affected (0.06 sec)Records: 3 Deleted: 0 Skipped: 0 Warnings: 0
mysql> select * from mytab;
+----+--------+-----+--------+| id | name | age | salary |+----+--------+-----+--------+| 
1 | ?阿琼 | 23 | 1000 || 2 | 秋水虾 | 24 | 500 || 3 | 害人精 | 22 | 100 |+----+--------+-----+--------+
Copy after login

3 rows in set (0.01 sec)

#如何将mytab中的数据复制到mytable中,就是我们下面需要做的。mytable中数据如最上边所示:

#insert into mytable (name,count) select name,salary from mytab ;
mysql> select * from mytable;
+----+--------+-------+| id | name | count |+----+--------+-------+| 1 | 张三 | 1000 || 2 | 李四 | 500 || 3 | 
王老虎 | 100 || 4 | 赵大 | 1000 || 5 | 王二小 | 500 || 6 | 三亚子 | 100 || 7 | ?阿琼 | 1000 || 8 | 秋水虾 | 500 
|| 9 | 害人精 | 100 |+----+--------+-------+
Copy after login

9 rows in set (0.00 sec)
#可以看到数据以及增加了三行,即将全表导入

#进行不重复插入数据操作:
这里先删除最后一条数据:

#delete from mytable where id=9;
mysql> delete from mytable where id=9;Query OK, 1 row affected (0.10 sec)
Copy after login

#按照预期应该只会插入一条语句,看一下是不是如此呢,下面我们先写一个sql的草稿:
#insert into mytable(name,count) select name,salary from mytab where not exists (select * from mytable where name=mytab.name);
#上面的语句就是将重名的剔除,添加非重名数据

mysql> insert into mytable(name,count) select name,salary from mytab where not e
xists (select * from mytable where name=mytab.name);
Query OK, 1 row affected (0.06 sec) #影响一行数据
Records: 1 Duplicates: 0 Warnings: 0
Copy after login

#小注:在这里我用了较长时间才写好该sql语句,没办法,略显不专业哈。

#####----------------关于向表格中添加数据的操作暂时结束-----####
#以后还会将一些关于mysql配置文件my.conf相关的东西,由于对于数据库整体把我不是太好,切勿见怪。

以上就是mysql数据库的备份以及表格数据之间的复制_MySQL的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles