熊心搏搏 发表于 2009-05-26 10:16

已知表名和索引字段名,怎么得到该表的索引名?

已知:

1、表名:假设为A
2、该表的的某个索引(假设为IDX)的索引字段(AA,BB,CC)

怎样用Shell通过Informix的系统表得到这个IDX?

谢谢。

yunzhongyue 发表于 2009-05-26 10:16

因为在同一个索引里不太可能有两个相同的栏位,所以可以改成这样:
select idxname
from sysindexes a,systables b
where a.tabid = b.tabid and
   b.tabname='A' and
   a.part1 in (select colno from syscolumns c
                where c.tabid = b.tabid and
                      c.colname in ("AA","BB","CC")) and
   a.part2 in (select colno from syscolumns c
                where c.tabid = b.tabid and
                      c.colname in ("AA","BB","CC")) and
   a.part3 in (select colno from syscolumns c
                where c.tabid = b.tabid and
                      c.colname in ("AA","BB","CC"))

ziggler 发表于 2009-05-26 11:09

回复 #1 熊心搏搏 的帖子

查询这两个sysindexes 、sysindexkeys   表?

熊心搏搏 发表于 2009-05-26 12:38

原帖由 ziggler 于 2009-5-26 11:09 发表 http://bbs2.chinaunix.net/images/common/back.gif
查询这两个sysindexes 、sysindexkeys   表?

谢谢,我知道是需要查询systabels,sysindexes,syscolumns表。关键是怎样查询?怎样的SQL?

ziggler 发表于 2009-05-26 13:57

回复 #3 熊心搏搏 的帖子

看看这几个表的结构和数据,就可以组织出SQL来了吧。

熊心搏搏 发表于 2009-05-26 14:10

继续求助。。。

yunzhongyue 发表于 2009-05-26 14:55

写的比较笨,不过还是达到你的要求了,如果栏位多的话在后面再加a.part? , 给分!:mrgreen: :mrgreen:
select idxname
from sysindexes a,systables b
where a.tabid = b.tabid and
   b.tabname='A' and
   a.part1 = (select colno from syscolumns c
                where c.tabid = b.tabid and
                      c.colname = 'AA') and
   a.part2 = (select colno from syscolumns c
               where c.tabid = b.tabid and
                     c.colname = 'BB') and
   a.part3 = (select colno from syscolumns c
               where c.tabid = b.tabid and
                     c.colname = 'CC')

熊心搏搏 发表于 2009-05-26 15:10

原帖由 yunzhongyue 于 2009-5-26 14:55 发表 http://bbs2.chinaunix.net/images/common/back.gif
写的比较笨,不过还是达到你的要求了,如果栏位多的话在后面再加a.part? , 给分!:mrgreen: :mrgreen:
select idxname
from sysindexes a,systables b
where a.tabid = b.tabid and
   b.tabname='A' an ...

谢谢,因为不能保证AA就是放在part1中,如果AA在part2中呢?只是知道是用AA,BB,CC这三个字段为索引,但是在表中到底是part1是AA,还是part2,part3是AA,是不知道的。因此,分暂不能给,不好意思。

[ 本帖最后由 熊心搏搏 于 2009-5-26 15:14 编辑 ]

熊心搏搏 发表于 2009-05-26 17:06

原帖由 yunzhongyue 于 2009-5-26 16:10 发表 http://bbs2.chinaunix.net/images/common/back.gif
因为在同一个索引里不太可能有两个相同的栏位,所以可以改成这样:
select idxname
from sysindexes a,systables b
where a.tabid = b.tabid and
   b.tabname='A' and
   a.part1 in (select colno f ...

谢谢,这段代码依然有问题,假设表A有两个索引,一个以AA,BB,CC字段为索引,一个以AA,BB,CC,DD字段为索引。则按照上边的代码可能这两个索引名都会取出。但是我的要求是就只能取出AA,BB,CC字段为索引的索引名。

继续求助。。谢谢。。

熊心搏搏 发表于 2009-05-26 17:14

改成这样应该可以的。
select idxname
from sysindexes a,systables b
where a.tabid = b.tabid and
   b.tabname='A' and
   a.part1 in (select colno from syscolumns c
                where c.tabid = b.tabid and
                      c.colname in ("AA","BB","CC")) and
   a.part2 in (select colno from syscolumns c
                where c.tabid = b.tabid and
                      c.colname in ("AA","BB","CC")) and
   a.part3 in (select colno from syscolumns c
                where c.tabid = b.tabid and
                      c.colname in ("AA","BB","CC")) and
   a.part4 = 0

[ 本帖最后由 熊心搏搏 于 2009-5-26 17:19 编辑 ]
页: [1] 2
查看完整版本: 已知表名和索引字段名,怎么得到该表的索引名?