Dieses Tutorial zeigt eine Klassifizierungstabelle und eine Nachrichtentabelle
1 ,Erstellung einer Klassifizierungstabelle
Tabellenname: Typ
erstellen Tabellentyp(
id int(11) not null primärschlüssel auto_increment,
Typname varchar(255) ,
orderid int(11) ,
fid int(11))
CHARSET=utf8;
2. Erstellung einer Nachrichtentabelle
Tabellenname: Nachrichten
erstellen table news(
id int(11) not null Primary key auto_increment,
typeid int(11) not null ,
Titel varchar(255),
source varchar(255),
picurl varchar(255),
Inhaltstext ,
posttime int(11))
CHARSET=utf8;