Hacker News new | ask | show | jobs
by seanc722 4735 days ago
Have any resources that explain Views and the efficiency vs a query..? I thought views had the same performance of the underlying SQL statements.
1 comments

In SQL server normal Views are basically just a select statent but indexed views can have large performance advantages. http://technet.microsoft.com/en-us/library/cc917715.aspx Other DB's have there own optimizations for the same idea.