select * from table1 where RDate >='01/01/2014' and RDate < '09/26/2017' and umsg = convert(varchar(max), umsg)
create table #test ( uni nvarchar(100) ) insert into #test (uni) values (N'法的書面'),( 'asdf'), (N'Foo'), ('Bar') select * from #test where uni <> convert(varchar(max), uni)
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)