- < with tbl as > 是否比 < create table tbl as >快得多?
with tbl as
(
select
id,name
from
a
)
select id from tbl;
create table tbl
as
select
id,name
from
a;
select id from tbl;
- 如果我想在许多查询中使用 tbl,如何使用 <和 tbl as >?
with tbl as
(
select
id,name
from
a
)
select id from tbl;
select name from tbl;