oracle 基本用法
Posted candmy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 基本用法相关的知识,希望对你有一定的参考价值。
with as的用法
with as 是在内存中会间理一个临时表,基本使用:
with temp_table as (select * from table) select * from temp_table
如果需要建立多个临时表,则使用:
with temp_tablea as (select * from tablea), temp_tableb as (select * from tableb)
以上是关于oracle 基本用法的主要内容,如果未能解决你的问题,请参考以下文章