作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在使用以下问题从大型 mysql 表中获取日期。
SELECT fullPath, Permissiontype, DinstinguishedName
from cdm.test
where fullPath in
(SELECT distinct fullPath
FROMcdm.test
WHERE (Permissiontype = 'EXPLICIT' and not DinstinguishedName ='')
OR(Permissiontype = 'INHERITED'
AND (length(fullPath) - length(replace(fullPath,'/','')) < 4))
OR(Permissiontype = 'EXPLICIT'
AND NOT DinstinguishedName=''
AND LEFT(fullPath,length(fullPath)-Length(RIGHT(fullPath,INSTR(reverse(fullPath),'/'))))
AND(length(fullPath) - length(replace(fullPath,'/','')) > 2) ))
当我将需要显示的结果限制为 270 条时,它运行得非常快,但例如 500 行,它就无法运行。我在表中有 1 个案例 7700 万行(需要在 1 个表中)。然后运行了8个多小时,仍然没有完成。有没有办法优化这个?
wkr。
最佳答案
对于测试表中的每条记录,您将在子查询中再次查询整个表。不要在 where 子句中使用子查询,而是尝试在同一个表上使用内部联接。这将极大地提高你的表现。
我还没有尝试过,但它可能看起来像:
SELECT fullPath, Permissiontype, DinstinguishedName from cdm.test
INNER JOIN (
SELECT distinct fullPath from cdm.test
where (Permissiontype = 'EXPLICIT' and not DinstinguishedName ='')
or (Permissiontype = 'INHERITED' AND (length(fullPath) - length(replace(fullPath,'/','')) < 4)) OR(Permissiontype = 'EXPLICIT'
AND NOT DinstinguishedName='' AND LEFT(fullPath,length(fullPath)-length(RIGHT(fullPath,INSTR(reverse(fullPath),'/'))))
and(length(fullPath) - length(replace(fullPath,'/','')) > 2) )
) AS SQ1
ON SQ1.fullpath = cdm.test.fullpath
关于Mysql嵌套查询耗时较长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30123718/
我对如何在 Typescript 中对 API 进行建模有点困惑。 我正在尝试对 hexo 进行建模API,例如用法,看起来有点像这样: hexo.extend.tag.register(name,
我是一名优秀的程序员,十分优秀!