您好,欢迎访问一九零五行业门户网

简单PHP留言板之一 MYSQL的设计与创建_MySQL

bitscn.com
留言条数的id,类型为整形,并且为主键
留言者的名字,也就是用户名,类型为字符型,长度10,可根据需求自行设置
留言的标题,类型为字符型,长度50,可根据需求自行设置
留言内容,类型为文本
留言时间,类型为时间型
mysql代码:
create table `message` (`id` int not null ,`user` char(10) not null ,`title` varchar(50) not null ,`content` text not null ,`lastdate` time not null ,primary key (`id`));
bitscn.com
其它类似信息

推荐信息