📅  最后修改于: 2022-03-11 15:05:03.585000             🧑  作者: Mango
--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'