|
I use:
declare @t table (S_DATA int, S_TIME int, S_ID int)
select * into @t from text_one
instead:
insert @t
select 3, 12, null union all
select 2, 13, null union all
select 2, 14, null union all
Tip: There is an error near "@t", please solve it for me ~ Thank you |
|