1,新建數(shù)據(jù)庫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,表結構如下圖所示:
看過本課程的同學也在學