亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Database Design

1, Create a new database onecms

CREATE DATABASE onecms;

2, create a new message table:

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, the table structure is as shown below:

微信圖片_20180308094013.png

Continuing Learning
||
<?php echo "數(shù)據(jù)庫(kù)設(shè)計(jì)";
submitReset Code