How do I index a database column

后端 未结 9 1895
难免孤独
难免孤独 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-12 16:10

    1. CREATE INDEX name_index ON Employee (Employee_Name)

    2. On a multi column: CREATE INDEX name_index ON Employee (Employee_Name, Employee_Age)

提交回复
热议问题