T-SQL - What is an inline-view?

后端 未结 7 1683
春和景丽
春和景丽 2021-01-06 10:39

I recently answered this question how-to-call-user-defined-function-in-order-to-use-with-select-group-by-order-by

My answer was to use an inline view to perform the

7条回答
  •  囚心锁ツ
    2021-01-06 11:26

    IMHO, an "inline view" is just another expression for a row-returning sub-query.

    In other words — an SQL expression that could be replaced entirely by the name of a view (therefore, a correlated sub-query does not qualify as an inline view).

提交回复
热议问题