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 子句

你可能感兴趣的:(sql,server,临时表,select)