索引共1篇
Oracle 索引增删改查-岸边IBIAN

Oracle 索引增删改查

1、创建索引 create index 索引名 on 表名(列名); 2、删除索引 drop index 索引名; 3、创建组合索引 create index 索引名 on 表名(列名1,,列名2); 查看目标表中已添加的索引 --在数据库中查找表...
Management的头像-岸边IBIANManagement3个月前
0190