首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

判断两个表的重名目录是否存在

2013-06-25 
判断两个表的重名索引是否存在现在在有2个婊 tab1和 tab2,对这两个表的某个属性建立索引,起名都叫tab_inde

判断两个表的重名索引是否存在

现在在有2个婊 tab1和 tab2,对这两个表的某个属性建立索引,起名都叫tab_index

我心中要判断这两个索引是不是存在。是要分别判断tab1和 tab2的tab_index是否存在,不是判断只要存在tab_index就行,
谢谢 sql?索引?重名?判断
[解决办法]
select distinct sys.tables.name, sys.indexes.name from sys.tables
inner join sys.indexes on sys.tables.object_id = sys.indexes.object_id
and sys.indexes.name = 'tab_index'
where sys.tables.name in ('tab1', 'tab2')

热点排行