CREATE TABLE `t_item and soso` (
`id` bigint(20) UNSIGNED AUTO_INCREMENT NOT NULL,
`sellerId` bigint(20) NULL,
`product_id` bigint(20) NULL,
`source_product_id` varchar(100) NULL,
`price` decimal(15, 2) NULL,
`detail_url` varchar(500) NULL,
`gmt_create` datetime NULL,
`gmt_modified` datetime NULL,
`questionId` int(11) NULL,
PRIMARY KEY (`id`),
KEY `index_sellerId_questionId` USING BTREE (`sellerId`, `questionId`),
KEY `sid_gmtmodified` USING BTREE (`sellerId`, `gmt_modified`)
) ENGINE = InnoDB CHARSET = utf8
其中CREATE TABLE t_item and soso
( 中的表名空格会被吃掉。
5条答案
按热度按时间qnakjoqk1#
表名怎么能有空格?
vfh0ocws2#
mysql可以,我们的客户有这种需求,而且还有$符等特殊符号,比较变态,
hgtggwj03#
使用这个
t_item and soso
wvyml7n54#
@wenshao 我们应该有加上引号,好像也不行似乎
xe55xuns5#
已经验证过,使用这个
t_item and soso
能正常解析