我在查询执行中面临一些问题,这是我的情况:
我有两张表 log ,包含2万条记录, logrecords 包含6万条记录
日志表中的单个日志记录可以在 logrecords表中有多个日志消息,我的数据库架构如下所示
日志表
CREATE TABLE `log` (
`logid` varchar(50) NOT NULL DEFAULT '',
`creationtime` bigint(20) DEFAULT NULL,
`serviceInitiatorID` varchar(50) DEFAULT NULL,
PRIMARY KEY (`logid`),
KEY `idx_creationtime_wsc_log` (`creationtime`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
logrecords 表
CREATE TABLE `logrecords` (
`logrecordid` varchar(50) NOT NULL DEFAULT '',
`timestamp` bigint(20) DEFAULT NULL,
`message` varchar(8000) DEFAULT NULL,
`loglevel` int(11) DEFAULT NULL,
`logid` varchar(50) DEFAULT NULL,
`indexcolumn` int(11) DEFAULT NULL,
PRIMARY KEY (`logrecordid`),
KEY `indx_logrecordid_message_logid` (`logrecordid`,`message`(767),`logid`),
KEY `logid` (`logid`),
KEY `indx_message` (`message`(767))
) ENGINE=InnoDB DEFAULT CHARSET=latin1
hibernate创建的查询就像
select this_.logid as logid4_1_, this_.loglevel as loglevel4_1_, this_.creationtime as creation3_4_1_,this_.serviceInitiatorID as service17_4_1_, this_.logtype as logtype4_1_,logrecord1_.logrecordid as logrecor1_3_0_, logrecord1_.timestamp as timestamp3_0_, logrecord1_.message as message3_0_, logrecord1_.loglevel as loglevel3_0_, logrecord1_.logid as logid3_0_, logrecord1_.indexcolumn as indexcol6_3_0_ from log this_ inner join wsc_logrecords logrecord1_ on this_.logid=logrecord1_.logid where (1=1) and (1=1) and logrecord1_.message like 'SecondMessage' order by this_.creationtime desc limit 25
执行 7313ms 以执行
查询说明就像
但是当我执行下面的查询时,执行
需要大约15分钟select count(*) as y0_ from log this_ inner join logrecords logrecord1_ on this_.logid=logrecord1_.logid where (1=1) and (1=1) and lower(logrecord1_.message) like 'SecondMessage' order by this_.creationtime desc limit 25
对于上面的查询说明就好
我正在使用MySQl数据库。我认为索引或其他一些我无法识别的问题
任何解决方案都将受到赞赏。
答案 0 :(得分:0)
当您使用lower(logrecord1_.message) like 'SecondMessage'
而不是普通logrecord1_.message like 'SecondMessage'
时,数据库引擎将停止使用logrecord1_.message
上的索引。
您可以通过创建基于函数的索引来解决此问题,该索引具有lower(logrecord1_.message)
代替logrecord1_.message
。