标签:索引
oracle怎么建立表索引
SQL语句创建针对表TblForIndex的 唯一 索引create unique index idx_Id on TblForIndex(Id); -- idx_Id 是索引名字 -- TblForIndex 是表名,Id 是栏位名称创建多列索引create index idx_Id_Empno on Tbl……
03-26 立刻查看
SQL语句创建针对表TblForIndex的 唯一 索引create unique index idx_Id on TblForIndex(Id); -- idx_Id 是索引名字 -- TblForIndex 是表名,Id 是栏位名称创建多列索引create index idx_Id_Empno on Tbl……