码迷,mamicode.com
首页 > 数据库 > 详细

sql 语句系列(列举非索引外键)[八百章之第九章]

时间:2020-03-27 00:38:19      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:dex   column   rom   left join   目的   for   卡尔   ons   pre   

列举非索引外键

列举出那些外键没有添加索引。

目的:
1.减少锁。
2.外键添加索引,提示了查询性能,因为要与父表做连接查询做笛卡尔积。

下面只要会复制即可,没有会去从新写一遍的。

select fkeys.table_name,fkeys.constraint_name,fkeys.column_name,ind_cols.index_name
from (
select a.object_id,d.column_id,a.name table_name,b.name constraint_name,d.name column_name
from sys.tables a join 
sys.foreign_keys b
on (a.name=‘EMP‘
and a.object_id=b.parent_object_id
)
join sys.foreign_key_columns c
on (b.object_id=c.constraint_object_id)
join sys.columns d
on (c.constraint_column_id=d.column_id and a.object_id=d.object_id)
) fkeys
left join(
select a.name index_name,b.object_id,b.column_id
from sys.indexes a,sys.index_columns b
where a.index_id= b.index_id
) ind_cols on (fkeys.object_id=ind_cols.object_id and fkeys.column_id=ind_cols.column_id)
where ind_cols.index_name is null

sql 语句系列(列举非索引外键)[八百章之第九章]

标签:dex   column   rom   left join   目的   for   卡尔   ons   pre   

原文地址:https://www.cnblogs.com/aoximin/p/12578494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!