数据库设计

1,新建数据库onecms

CREATE DATABASE onecms;

2,新建message表:

CREATE TABLE message(

id int(11) not null primary key auto_increment,

title varchar(255) NOT NULL,

content text NOT NULL)

ENGINE=InnoDB DEFAULT CHARSET=utf8;

3,表结构如下图所示:

微信图片_20180308094013.png

继续学习
||
<?php echo "数据库设计";
提交重置代码
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!