create table #tab1 ( a varchar(10) ) Insert Into #tab1 select 'a' + char(13) + 'b'; select * from #tab1 drop table #tab1
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)