select first_field +'    '+ second_field as my_filed from xTable
select first_field +space(10)+ second_field as my_filed from xTable

解决方案 »

  1.   

    select first_field + '   ' + second_field as my_filed from xTable
      

  2.   

    select first_field,'  '='  ',second_field as my_filed from xtable
    or
    select first_field+'  '+second_field from xtable
      

  3.   

    select first_field+'空格数'+ second_field as my_field from xtable
      

  4.   

    select first_field, '   ', second_field as my_filed from xTable
      

  5.   

    select cast(first_field as varchar) + '   ' + cast(second_field as varchar) as my_filed from xTable