> 데이터 베이스 > MySQL 튜토리얼 > sql创建表索引 create index()语句

sql创建表索引 create index()语句

不言
풀어 주다: 2018-05-17 16:05:07
원래의
3622명이 탐색했습니다.

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)
로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿