Can you explain What is Indexed view? How to create it?

Submitted by: Administrator
In an indexed view, the data is already computed and stored. Data can be accessed by a unique index. This index is a clustered index. In order to create an index the syntax is

CREATE [UNIQUE], [CLUSTERED | NONCLUSTERED] INDEX index_name
ON {view}
[WITH <index_option>]
[ON filegrp]
Submitted by: Administrator

Read Online MS SQL Server Views Job Interview Questions And Answers