sql创建表索引 create index()语句
程序员文章站
2022-05-16 23:34:41
...
sql创建表索引 create index()语句
mssql server 方法
语法:
create [索引类型] index 索引名称
on 表名(列名)
with fillfactor = 填充因子值0~100
go
实例
create nonclustered index ix_test_tname --创建一个非聚集索引 on test(tname) --为test表的tname字段创建索引 with fillfactor = 30 --填充因子为30% go select * from test(index = ix_test_tname) where tname = 'a'
方法
mysql创建索引语法
create [unioun|fulltext|spatial] index indexname[using indextype] on tablename( tablenamecol) index_col_name: col_name[ (length)][asc |desc]
更多详细内容请查看:-
index.htm
实例
create index 实例
本例会创建一个简单的索引,名为 "personindex",在 person 表的 lastname 列
:
create index personindex on person (lastname)
如果您希望以降序索引某个列中的值,您可以在列名称之后添加保留字 desc:
create index personindex on person (lastname desc)
假如您希望索引不止一个列,您可以在括号中列出这些列的名称,用逗号隔开:
create index personindex on person (lastname, firstname)
推荐阅读
-
Oracle创建主键自增表(sql语句实现)及触发器应用
-
安装好oracle后创建表空间SQL语句教程
-
SQL语句实现查询并自动创建Missing Index
-
(Sql server)用现有表中的数据创建Sql的Insert插入语句
-
oracle表准备、索引测试、查询SQL执行次数、创建表空间方法详解
-
SQL Server 创建索引(index)
-
PHP MongoDB-创建索引(create index)
-
MySQL常用的建表、添加字段、修改字段、添加索引SQL语句写法总结
-
用ASP和SQL语句动态的创建Access表
-
数据库优化-索引的创建-MySQL-index-SQL优化-避免全表扫描