Which one faster either view or sql query? Please note that both view and sql query having the sql statements.
Asked
Active
Viewed 98 times
2 Answers
1
They should be equivalent.
A view is essentially just the result set of a stored query, using all the same indexes and data pages as the underlying tables.
Views can have additional indexes added to speed up operations like aggregates. See indexed views.

JNK
- 63,321
- 15
- 122
- 138
0
This question provides good answers already, check it out!

Community
- 1
- 1

John Humphreys
- 37,047
- 37
- 155
- 255