1
성능면에서 쿼리가 아래 쿼리에 있습니까?최적화에서 Isnull()을 사용합니다.
select COLUMN1,column2 from table
where COLUMN1 is not null
and COLUMN1 <>'';
select COLUMN1,column2 from table
where isnull(Column1,'')<>'';
성능면에서 쿼리가 아래 쿼리에 있습니까?최적화에서 Isnull()을 사용합니다.
select COLUMN1,column2 from table
where COLUMN1 is not null
and COLUMN1 <>'';
select COLUMN1,column2 from table
where isnull(Column1,'')<>'';
http://stackoverflow.com/questions/8924913/is-there-is-any-performance-issue-while-using-isnull-in-sql-server –