暂无图片
返回数说广场
smith0907
2023-10-18
在 MySQL 中执行 create table t(id int primary key)engine=innodb;然后继续执行 create temporary table t(id int) engine=myisam; 请问执行 show create table t;这条命令会显示普通表的创建命令还是临时表的命令?A A CREATE TEMPORARY TABLE `t` (`id` int DEFAULT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; B CREATE TABLE `t` (`id` int NOT NULL,PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
1
暂无图片 3
284
分享

评论

热门数说