📜  sql server 插入临时表 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:03.585000             🧑  作者: Mango

代码示例1
--This will create a temp table on the fly
SELECT last_name, first_name, hire_date, job_title 
INTO #tmp_employees
FROM dbo.employee
WHERE hire_date > '1/1/2010'