如果是有某个字段需要转换后插入临时表,可以在SELECT语句中直接转换,举个例子
select [date]=convert(varchar(10),[date],120) into #tmp from table1
临时表的date字段就是字符型