我正在尝试将数据从table1
填充到table2
,两者的列数相同。
table1
中的所有列都属于varchar
类型。 table2
中的列可以是varchar
,int
或datetime
等。
我的问题是如何在填充期间进行转换?
这是我写的示例查询。我想念转换的部分。我datetime
的格式也是mm/dd/yyyy hh:mm:ss
。
insert into table2
select s.acty_id, s.notes_datetime, s.notes_data
from table1 t right join table2 s
on (t.acty_id =s.acty_id and t.notes_datetime =s.notes_datetime)
where t.acty_id is null
答案 0 :(得分:12)
Declare @dt varchar(20)
set @dt = '08-12-2012 10:15:10'
select convert(datetime, @dt, 101)
对于您的查询,您将执行以下操作:
insert into table2
select s.acty_id, s.notes_datetime, s.notes_data
from table1 t
right join table2 s
on t.acty_id =s.acty_id
and convert(datetime, t.notes_datetime, 101) = s.notes_datetime
where t.acty_id is null
答案 1 :(得分:5)
正确的答案是纠正table1,以便它使用正确的数据类型。在此期间,假设您需要匹配日期和时间,您可以尝试:
and CONVERT(DATETIME, t.notes_datetime, 101) = s.notes_datetime