作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我的架构是这样的:
CREATE TABLE `dump` (
`index` int(20) DEFAULT NULL,
`uid` int(20) DEFAULT NULL,
`time` int(20) DEFAULT NULL,
`delete1` int(20) DEFAULT NULL,
`delete2` int(20) DEFAULT NULL,
`delete3` int(20) DEFAULT NULL,
`delete4` int(20) DEFAULT NULL,
`delete5` int(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
然而当我运行查询时:
SELECT * FROM dump WHERE 'index' IN ('1', '2', '3');
什么都没有返回。我 100% 确定存在具有这些值索引的条目。如果我从 1,2,3 等中删除单引号并不重要,但如果从索引中删除则给出语法错误。
我是一名优秀的程序员,十分优秀!