mysqldump导出数据自增属性丢失案例
2021/7/22 19:06:37
本文主要是介绍mysqldump导出数据自增属性丢失案例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
create table t9(id int not null auto_increment primary key,name varchar(20) not null default '');
insert into t9 values(1,'a'),(2,'b'),(3,'c');
select * from t9;
mysql> show create table t9 \G
*************************** 1. row ***************************
Table: t9
Create Table: CREATE TABLE `t9` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4
1 row in set (0.00 sec)
mysqldump --single-transaction --set-gtid-purged=off --skip-opt -S /home/data/my3367/socket/mysqld.sock -uroot -proot db2 t9 > t9.sql
--
-- Table structure for table `t9`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t9` (
`id` int(11) NOT NULL,
`name` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
);
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `t9`
--
INSERT INTO `t9` VALUES (1,'a');
INSERT INTO `t9` VALUES (2,'b');
INSERT INTO `t9` VALUES (3,'c');
导入后业务处理的时候提示:
DBAPIError exception wrapped from (pymysql.err.InternalError) (1364, u"Field 'id' doesn't have a default value"
这篇关于mysqldump导出数据自增属性丢失案例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南