n relational database, Index will be the important mechanism for boosting performance.
Index is important like Index for a book that helps you quickly find the pages that you wanted to read, index on the column speeds data retrieval.

CREATE INDEX Statement will look like this:

CREATE [UNIQUE] INDEX [INDEX NAME]
ON TABLE [COLUMN NAME]


EXAMPLE :

Want to create a INDEX on Table Users which is including column names user_fname and user_lname.

SQL Statement:

CREATE INDEX user_name
ON Users (user_fname, user_lname)

 

相关文章:

  • 2022-12-23
  • 2022-02-15
  • 2021-11-24
  • 2021-10-12
  • 2022-02-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-23
  • 2022-02-17
  • 2021-12-05
  • 2021-05-29
  • 2021-12-22
  • 2021-11-11
相关资源
相似解决方案