错误
SQL 查询:
-- ----------------------------
-- Table structure for uchome_happyfarm_mc
-- ----------------------------
CREATE TABLE `uchome_happyfarm_mc` (
`id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`uid` int( 11 ) NOT NULL DEFAULT '0',
`Status` text NOT NULL ,
`exp` int( 11 ) DEFAULT '0',
`taskid` int( 11 ) NOT NULL ,
`package` text NOT NULL ,
`tools` text NOT NULL ,
`decorative` text NOT NULL ,
`bad` text NOT NULL ,
`badnum` int( 11 ) NOT NULL ,
`badtime` int( 11 ) NOT NULL DEFAULT '0',
`parade` text NOT NULL ,
`repertory` text NOT NULL ,
`log` text NOT NULL ,
`dabian` tinyint( 4 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = InnoDB DEFAULT CHARSET = latin1;
MySQL 返回:
#1005 - Can't create table '.\uchome\uchome_happyfarm_mc.frm' (errno: 121)
这是怎么回事呀? |