内容摘要:复制DROPTABLEIFEXISTS`student`;            CREATETABLE`student`(            `student_id`int(10)unsigne

复制DROP TABLE IF EXISTS `student`;              CREATE TABLE `student` (               `student_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 编号,更爽
               `name` varchar(20) DEFAULT NULL COMMENT 姓名,               `phone` varchar(20) DEFAULT NULL COMMENT 电话,               `email` varchar(50) DEFAULT NULL COMMENT 邮箱,               `sex` tinyint(4) DEFAULT NULL COMMENT 性别,               `locked` tinyint(4) DEFAULT NULL COMMENT 状态(0:正常,1:锁定),               `gmt_created` datetime DEFAULT CURRENT_TIMESTAMP COMMENT 存入数据库的时间,               `gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 修改的
服务器托管时间,                `delete` int(11) DEFAULT NULL,               PRIMARY KEY (`student_id`)             ) ENGINE=InnoDBAUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4COLLATE=utf8mb4_0900_ai_ciCOMMENT=学生表;             1.2.3.4.5.6.7.8.9.10.11.12.13.
云服务器