怎么提高以下sql的查询效率
怎么提高以下sql的查询效率:selecta,b,cfromtablewhered=1ore=2;selecta,b,cfromtablewhered!=0;select...
怎么提高以下sql的查询效率:
select a,b,c from table where d=1 or e =2;
select a,b,c from table where d != 0;
select a,b,c from table where substring(d,1,4)='abc';
select t.a,t.b,t,c from table_a t where t.d in (select a from table_b t)--(使用exists替换) 展开
select a,b,c from table where d=1 or e =2;
select a,b,c from table where d != 0;
select a,b,c from table where substring(d,1,4)='abc';
select t.a,t.b,t,c from table_a t where t.d in (select a from table_b t)--(使用exists替换) 展开
4个回答
展开全部
他只让在语句级别修改吗?不是的话告诉他加索引^-^
1、以前看论坛说这样可以,但没亲测过
select a,b,c from table where d=1 union select a,b,c from table where e=2
2、按照上面的方法的话可以
select a,b,c from table where d>0 union all select a,b,c from table where d<0
3、select a,b,c from table where d like 'abc%';
4、exists对null的处理还是优于in的
select t.a,t.b,t,c from table_a t where exists (select a from table_b where a=t.d)
1、以前看论坛说这样可以,但没亲测过
select a,b,c from table where d=1 union select a,b,c from table where e=2
2、按照上面的方法的话可以
select a,b,c from table where d>0 union all select a,b,c from table where d<0
3、select a,b,c from table where d like 'abc%';
4、exists对null的处理还是优于in的
select t.a,t.b,t,c from table_a t where exists (select a from table_b where a=t.d)
柚鸥ASO
2024-03-16 广告
2024-03-16 广告
作为江苏柚鸥广告有限公司的工作人员,我为您解答。ASO优化是指在应用商店搜索结果中提高应用排名的过程。关键词的选择对于ASO优化至关重要。以下是一些选关键词的技巧:1. 确定目标用户:了解您的目标用户,找出他们可能会搜索的关键词。2. 研究...
点击进入详情页
本回答由柚鸥ASO提供
展开全部
前三句在语句层面已经没有提升空间。说第四句:
select t.a,t.b,t,c from table_a t where exists(select 1 from table_b where a = t.d)
第三句其实也可以考虑改改:
select a,b,c from table where charindex('abc',d) = 1或
select a,b,c from table where left(d,3) = 'abc'
甚至直接:select a,b,c from table where d = 'abc'
因为你的原条件是substring(d,1,4)='abc',因为len('abc')=3,所以假如len(d)<>3的话,条件一定不成立,所以既然只有len(d)=3时才可能='abc',何不直接判断d = 'abc'
select t.a,t.b,t,c from table_a t where exists(select 1 from table_b where a = t.d)
第三句其实也可以考虑改改:
select a,b,c from table where charindex('abc',d) = 1或
select a,b,c from table where left(d,3) = 'abc'
甚至直接:select a,b,c from table where d = 'abc'
因为你的原条件是substring(d,1,4)='abc',因为len('abc')=3,所以假如len(d)<>3的话,条件一定不成立,所以既然只有len(d)=3时才可能='abc',何不直接判断d = 'abc'
更多追问追答
追问
前面的是可以提高的,这是今天我做的面试题
追答
如果你没记错题的话,我还真想知道前两句在不改变语义的情况下还能怎么优化。难道是把第二句的!=改为不成?搞笑,那第一句呢,还能怎么优,出题的什么年代出生的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
说一下 查询的优化吧:
①SQl语句是从右向左解析,多表查询时,记录数少的表放在右边。
②避免使用复杂的集合函数,eg:not in等。
③避免在条件中对字段进行函数操作。
④尽量避免使用select * 应该要写出需要查询的字段。
⑤如果在java中尽量使用prepareStatement执行sql,
⑥多个条件时,收敛快的条件放在右边。
①SQl语句是从右向左解析,多表查询时,记录数少的表放在右边。
②避免使用复杂的集合函数,eg:not in等。
③避免在条件中对字段进行函数操作。
④尽量避免使用select * 应该要写出需要查询的字段。
⑤如果在java中尽量使用prepareStatement执行sql,
⑥多个条件时,收敛快的条件放在右边。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不要使用*代替列
尽量不要使用子查询
排序里不要出现表达式
在字节数少的列上创建索引
定义重新定义索引(清理碎片)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询