摘要: 1、建立表索引 create index 索引名 on 表名(列名,列名); 2、删除表索引 drop index 索引名 on 表名; 3、查看表索引 select * from sysibm.sysindexes where tbname='表名'; 表名区分大小写 或者在后台可以用: desc 阅读全文
posted @ 2018-05-03 15:58 雪地飞行棋 阅读(22469) 评论(0) 推荐(1)