数据库(实验5 索引)

mac2026-08-08  5

创建索引


为表Teacher按降序来创建聚簇索引IND_TNO

use testbase2 go create clustered INDEX IND_TNO on Teacher(TNO DESC) go


删除索引


删除索引

use testbase2 go drop index Teacher.IND_TNO go


最新回复(0)