作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<小时/>
快速回答:查询条件需要与使用索引的列类型相同。我试图用数字条件搜索 CHAR 列。
<小时/>我有一个包含 1500 万行的表。我有一个名为“ticket”的列,它可以出现多次,但不会出现很多次。 。 。可能小于 10。我已经在此列上创建了一个索引,但解释命令说,当我使用简单的“WHERE Ticket =”查询时,它没有使用索引。显然,这让我很困惑,因为我在这里问一个问题。
CREATE TABLE company1.rTable (
`aDate` date DEFAULT NULL,
`fromD` date DEFAULT NULL,
`pNo` int(10) DEFAULT NULL,
`ticket` char(11) DEFAULT NULL,
`r` int(11) unsigned NOT NULL DEFAULT '0',
`line` tinyint(3) unsigned DEFAULT NULL,
`nNum` char(11) NOT NULL,
`pKey` char(7) DEFAULT NULL,
`modNum` char(4) DEFAULT NULL,
`dnum` smallint(5) unsigned NOT NULL,
`rdNum` smallint(5) unsigned DEFAULT NULL,
`pType` int(10) DEFAULT NULL,
`lNum` decimal(9,2) DEFAULT NULL,
`lineAmount` decimal(9,2) DEFAULT NULL,
`amount` decimal(9,2) DEFAULT NULL,
`amount1` decimal(9,2) DEFAULT NULL,
`amount2` decimal(9,2) DEFAULT NULL,
`amount3` decimal(9,2) DEFAULT NULL,
`amount4` decimal(9,2) DEFAULT NULL,
`amount5` decimal(9,2) DEFAULT NULL,
`amount6` decimal(9,2) DEFAULT NULL,
`amount7` decimal(9,2) DEFAULT NULL,
`amount8` decimal(9,2) DEFAULT NULL,
`amount9` decimal(9,2) DEFAULT NULL,
`amount10` decimal(9,2) DEFAULT NULL,
`tType` tinyint(4) DEFAULT NULL,
`lineB` decimal(9,2) DEFAULT NULL,
`lineD` char(1) DEFAULT NULL,
`lineP` decimal(9,2) DEFAULT NULL,
`lineI` decimal(9,2) DEFAULT NULL,
`lineC` decimal(9,2) DEFAULT NULL,
`lineW` decimal(9,2) DEFAULT NULL,
`lineR` decimal(9,2) DEFAULT NULL,
`lineM` decimal(9,2) DEFAULT NULL,
KEY `rADate` (`aDate`),
KEY `rTType` (`tType`),
KEY `rTicket` (`ticket`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1$$
我的查询:
SELECT *
FROM company1.rTable
WHERE ticket = 3478421;
也许有办法更改查询以使用索引?我尝试过诸如 'AND Ticket > 之类的事情。 。 .'作为猜测,但这没有帮助。
最佳答案
ticket
是一个字符列,您使用的是数字条件 (3478421)。
关于mysql - 不使用索引的简单 MySQL WHERE 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16550884/
我是一名优秀的程序员,十分优秀!