- Имеет ли <<strong> значение tbl как > намного быстрее, чем <<strong>, создать таблицу tbl как >?
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 во многих запросах, как использовать <<strong> с tbl как >?
with tbl as
(
select
id,name
from
a
)
select id from tbl;
select name from tbl;