create index myindex on Student(StudentID) ---创建一个索引,括号内为要为那一列添加索引 drop index Student.myindex ---删除索引,需指定“表名.索引列”
详细参考于:http://www.2cto.com/database/201201/117131.html
本文共 237 字,大约阅读时间需要 1 分钟。
create index myindex on Student(StudentID) ---创建一个索引,括号内为要为那一列添加索引 drop index Student.myindex ---删除索引,需指定“表名.索引列”
详细参考于:http://www.2cto.com/database/201201/117131.html
转载于:https://www.cnblogs.com/New-world/archive/2012/02/17/2355885.html