国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

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ù)庫設(shè)計(jì)";
submitReset Code