您现在的位置是:课程教程文章
mysql判断表不存在则创建
2023-12-18 19:02课程教程文章 人已围观
MYSQL判断不存在时创建表或创建数据库:
创建数据库:
Create Database If Not Exists MyDB Character Set UTF8
创建数据表:
Create Table If Not Exists `world`.`NewTable`( `ID` Bigint(8) unsigned Primary key Auto_Increment, `Name` text, `Birthday` DateTime )Engine InnoDB
创建结果如下:
推荐:MySQL教程
课程教程:mysql判断表不存在则创建上一篇:mysql权限不够怎么解决?
下一篇:没有了