seo网站关键词快速排名,免费网站建设可信吗,wordpress手机评论,手机商城网站开发创建数据库db_ck#xff0c;再创建表t_hero#xff0c;将四大名著中的主要人物都插入这个表中#xff0c;将实现过程中sql提交上上来 
1、创建数据库db_ck mysql create database db_ck; 2、创建表t_hero mysql use db_ck Database changed mysql create table …创建数据库db_ck再创建表t_hero将四大名著中的主要人物都插入这个表中将实现过程中sql提交上上来 
1、创建数据库db_ck mysql create database db_ck; 2、创建表t_hero mysql use db_ck Database changed mysql create table t_hero ( - id int primary key auto_increment, - name varchar(255) not null); Query OK, 0 rows affected (0.01 sec) 3、插入数据 mysql insert into t_hero (name )values - (“悟空”), - (“贾宝玉”), - (“赵云”), - (“松江”); Query OK, 4 rows affected (0.00 sec) 4、查看