How do I index a database column

后端 未结 9 1900
难免孤独
难免孤独 2020-12-12 15:51

Hopefully, I can get answers for each database server.

For an outline of how indexing works check out: How does database indexing work?

9条回答
  •  醉话见心
    2020-12-12 16:05

    The following is SQL92 standard so should be supported by the majority of RDMBS that use SQL:

    CREATE INDEX [index name] ON [table name] ( [column name] )
    

提交回复
热议问题