导入数据表sql表的结构出错信息,在MySQL:5.0.51a版本中出错,在MySQL:5.5.30版本中完全正常.数据表那出问题了?怎样才能在MySQL:5.0.51a版本中使用?
数据表sql表:
CREATE TABLE IF NOT EXISTS `%DB_PREFIX%activity` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT '',
`share_id` int(11) DEFAULT '0',
`uid` int(11) DEFAULT '0',
`cid` smallint(6) DEFAULT '0',
`cost` decimal(10,2) DEFAULT '0.00',
`begin_time` int(11) DEFAULT '0',
`end_time` int(11) DEFAULT '0',
`place` varchar(255) DEFAULT '',
`gender` tinyint(1) DEFAULT '0',
`number` smallint(6) DEFAULT '0',
`apply_number` smallint(6) DEFAULT '0',
`expiration_time` int(11) DEFAULT '0',
`fields` text,
`score` smallint(6) DEFAULT '0',
`province` smallint(6) DEFAULT '0',
`create_time` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `share_id` (`share_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `apply_number` (`apply_number`) USING BTREE,
KEY `province` (`province`) USING BTREE,
KEY `cid` (`cid`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
RUNCATE TABLE `%DB_PREFIX%activity`;
导入数据表sql表的结构出错信息,在MySQL:5.0.51a版本中出错,在MySQL:5.5.30版本中完全
答案:2 悬赏:60 手机版
解决时间 2021-04-14 20:35
- 提问者网友:嗝是迷路的屁
- 2021-04-14 08:26
最佳答案
- 五星知识达人网友:走死在岁月里
- 2021-04-14 08:58
CREATE TABLE IF NOT EXISTS `%DB_PREFIX%activity` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT '',
`share_id` int(11) DEFAULT '0',
`uid` int(11) DEFAULT '0',
`cid` smallint(6) DEFAULT '0',
`cost` decimal(10,2) DEFAULT '0.00',
`begin_time` int(11) DEFAULT '0',
`end_time` int(11) DEFAULT '0',
`place` varchar(255) DEFAULT '',
`gender` tinyint(1) DEFAULT '0',
`number` smallint(6) DEFAULT '0',
`apply_number` smallint(6) DEFAULT '0',
`expiration_time` int(11) DEFAULT '0',
`fields` text,
`score` smallint(6) DEFAULT '0',
`province` smallint(6) DEFAULT '0',
`create_time` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `share_id` (`share_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `apply_number` (`apply_number`) USING BTREE,
KEY `province` (`province`) USING BTREE,
KEY `cid` (`cid`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
TRUNCATE TABLE `%DB_PREFIX%activity`;
下面的内容转自163----
bjlfp的博客
mysql BTREE问题高版本向低版本转换的时候
解决办法是打开要导入的文件在里面搜索 BTREE 找到如下内容
KEY `columnCindex` (`columnC`) USING BTREE
修改为
KEY `columnCindex` USING BTREE (`columnC`),
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT '',
`share_id` int(11) DEFAULT '0',
`uid` int(11) DEFAULT '0',
`cid` smallint(6) DEFAULT '0',
`cost` decimal(10,2) DEFAULT '0.00',
`begin_time` int(11) DEFAULT '0',
`end_time` int(11) DEFAULT '0',
`place` varchar(255) DEFAULT '',
`gender` tinyint(1) DEFAULT '0',
`number` smallint(6) DEFAULT '0',
`apply_number` smallint(6) DEFAULT '0',
`expiration_time` int(11) DEFAULT '0',
`fields` text,
`score` smallint(6) DEFAULT '0',
`province` smallint(6) DEFAULT '0',
`create_time` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `share_id` (`share_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `apply_number` (`apply_number`) USING BTREE,
KEY `province` (`province`) USING BTREE,
KEY `cid` (`cid`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
TRUNCATE TABLE `%DB_PREFIX%activity`;
下面的内容转自163----
bjlfp的博客
mysql BTREE问题高版本向低版本转换的时候
解决办法是打开要导入的文件在里面搜索 BTREE 找到如下内容
KEY `columnCindex` (`columnC`) USING BTREE
修改为
KEY `columnCindex` USING BTREE (`columnC`),
全部回答
- 1楼网友:梦中风几里
- 2021-04-14 09:26
CREATE TABLE IF NOT EXISTS `%DB_PREFIX%activity` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT '', `share_id` int(11) DEFAULT '0', `uid` int(11) DEFAULT '0', `cid` smallint(6) DEFAULT '0', `cost` decimal(10,2) DEFAULT '0.00', `begin_time` int(11) DEFAULT '0', `end_time` int(11) DEFAULT '0', `place` varchar(255) DEFAULT '', `gender` tinyint(1) DEFAULT '0', `number` smallint(6) DEFAULT '0', `apply_number` smallint(6) DEFAULT '0', `expiration_time` int(11) DEFAULT '0', `fields` text, `score` smallint(6) DEFAULT '0', `province` smallint(6) DEFAULT '0', `create_time` int(11) DEFAULT '0', PRIMARY KEY (`id`), KEY `share_id` (`share_id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `apply_number` (`apply_number`) USING BTREE, KEY `province` (`province`) USING BTREE, KEY `cid` (`cid`) USING BTREE) ENGINE=MyISAM DEFAULT CHARSET=utf8; RUNCATE TABLE `%DB_PREFIX%activity
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯