Par exemple sous sybase tu peux faire:
Creation de la table puis insertion
create table #mytable( au_id char(11), zip char(5) )
insert into #mytable (au_id, zip )
select au_id, zip
from authors a
where a.zip like '9%'
drop table #mytable
OU
SELECT INCLUANT: La creation et l'insertion
select au_id, zip
into #mytable
from authors a
where a.zip like '9%'
drop table #mytable