当前位置:首页> PHP教程> php基础
关键字
文章内容
一数据库表结构
 
 
修改时间:[2011/07/02 21:26]    阅读次数:[862]    发表者:[起缘]
 
CREATE TABLE article (
id int(10) NOT NULL auto_increment,
title varchar(200),
author varchar(50),
content text,
KEY id (id),
KEY author (author),
);
phpfans.net收集整理