이 튜토리얼에서는 하나는 분류 테이블이고 다른 하나는 뉴스 테이블입니다
1, 분류 테이블 생성
테이블 이름: type
create table type(
id int (11) null이 아닌 기본 키 auto_increment,
typename varchar(255) ,
orderid int(11) ,
fid int(11))
문자 집합= utf8;
2, 뉴스 테이블 생성
테이블 이름: news
create 테이블 뉴스(
id int(11) 아님 null 기본 키 auto_increment,
typeid int(11) not null ,
title varchar(255),
source varchar(255),
picurl varchar(255),
content text ,
posttime int(11))
CHARSET=utf8;