我在 mysql db (app_id, dated) 中创建了一个两列键,当我运行以下查询时出现问题
INSERT INTO `facebook_application_shares` (`user_id`, `app_id`, `dated`, `stats`) VALUES ('80', '269456199802533', '2012-04-24', '0')
我收到以下错误 - 即使 app_id 是 269456199802533 而不是 2147483647
Duplicate entry '2147483647-2012-04-24' for key 1
然后当我检查实际的数据库表时,值实际上是“2147483647”
我对此感到非常困惑