明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

一 數(shù)據(jù)庫表結(jié)構(gòu)

[摘要]CREATE TABLE article ( id int(10) NOT NULL auto_increment, title varchar(200), author varchar(50), ...
CREATE TABLE article (
 id int(10) NOT NULL auto_increment,
 title varchar(200),
 author varchar(50),
 content text,
 KEY id (id),
 KEY author (author),
);