select title+isnull(othtitle,'') from title

解决方案 »

  1.   

    select isnull(title,'')+isnull(othtitle,'') from title
      

  2.   

    select title+isnull(othtitle,'') from title
      

  3.   

    --用phantomMan的好了 :) 两个都不会为空了
    select isnull(title,'')+isnull(othtitle,'') from title
      

  4.   

    还是觉得select title+isnull(othtitle,'') from title更贴切一些.楼主并没有说title为空时,就怎么样..
    可能title为空时, 要求返回null.
      

  5.   

    Select ISNULL(title,'')+ISNULL(othtitle,'') From titles