CREATE TABLE `goods_comment_0` (
`g_no` varchar(14) NOT NULL COMMENT ‘商品編號’,
`comment` text COMMENT ‘商品描述’,
`insdate` timestamp NOT NULL default ‘0000-00-00 00:00:00’ COMMENT ‘新增時間’,
`uptdate` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP COMMENT ‘修改時間’,
PRIMARY KEY (`g_no`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8