SQL server : select * into #products_temp from products; 直接查询一个到临时表
Postgersql : create temporary table "t_2" as select * from "SC_Contacts"; 创建一个临时表 使用 as 查询