このチュートリアルでは、1 つは分類テーブル、もう 1 つはニュース テーブルであることを示します。
1、分類テーブルの作成
テーブル名: type
create table type(
id int( 11) null ではない主キー auto_increment、
typename varchar(255)、
orderid int(11)、
fid int(11))
##CHARSET=utf8;
#2、ニューステーブルの作成
テーブル名: news
create table news(
##id int(11) not null 主キー auto_increment,typeid int( 11) null ではない、
title varchar(255)、
source varchar(255)、
picurl varchar(255),
##コンテンツ テキスト,
##posttime int(11))
#CHARSET=utf8;