T-SQL - What is an inline-view?

后端 未结 7 1704
春和景丽
春和景丽 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:37

    • Inline view are introduce Oracle 7.2 .
    • Inline view are special type of query used in Oracle Database.
    • Inline view we are using in sub query in place of table name with in parent query.

    They can be used as

    Select * from (sub query) ;
    

提交回复
热议问题