Oracle SQL clause evaluation order

后端 未结 5 1974
名媛妹妹
名媛妹妹 2020-12-28 11:18

In Oracle, which clause types get evaluated first? If I had the following ( pretend .... represent valid expressions and relation names ), what would the order of evaluation

5条回答
  •  情话喂你
    2020-12-28 11:43

    Oracle Query Processing Order

    • FROM clause
    • WHERE clause
    • GROUP BY clause
    • HAVING clause
    • SELECT clause
    • ORDER BY clause

提交回复
热议问题