Sql Server中将Select的查询结果存入一个表!(示例)

select * INTO temp_city from Class_City where Father_Id=103 or
 father_id in ((select City_Id from Class_City where Father_Id=103)) 


用的是select into 子句

原文地址:https://www.cnblogs.com/javawebsoa/p/3050691.html