我正在尝试运行以下查询:
"insert into visits set source = 'http://google.com' and country = 'en' and ref = '1234567890';"
查询对我来说很好,它会打印一个警告:
1 row(s) affected, 2 warning(s): 1364 Field 'country' doesn't have a default value 1292 Truncated incorrect DOUBLE value: 'http://google.com'
信息未按预期存储:
id , ref , bnid, source, country
'5', NULL, NULL, '0' , ''
如果我运行正常的语法,如:
insert into visits (source,country,ref) values('http://google.com','en','1234567890');
我得到了预期的结果:
'6', '1234567890', NULL, 'http://google.com', 'en'
第一个语法(插入集)在以前的服务器中工作。现在我改为使用cpanel,但没有。这是本周我第二次在两个不同的VPS中使用cpanel得到这个问题所以我猜它应该是版本号或mysql配置。
Mysql版本:5.1.63-cll
表:
CREATE TABLE `visits` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ref` varchar(64) DEFAULT NULL,
`bnid` int(11) DEFAULT NULL,
`source` varchar(256) DEFAULT NULL,
`country` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8
任何帮助?
答案 0 :(得分:10)
从插入查询中删除'和'
insert into visits set source = 'http://google.com' , country = 'en' , ref = '1234567890'
答案 1 :(得分:2)
使用INSERT...SET
时,请使用,
而非AND
分隔字段。
INSERT INTO visits SET source = 'http://google.com', country = 'en', ref = '1234567890';