select top 100 t2.FullName, * from Subject,(select id, isnull(first_name,'') +isnull(middle_name,'') + ' '+isnull(last_name,'') as FullName from Subject ) T2 where Subject.id = T2.id and T2.id = 372

--update Subject set Subject.full_name = T2.FullName from Subject,(select id, isnull(first_name,'') +isnull(middle_name,'') + ' '+ isnull(last_name,'') as FullName from Subject ) T2 where Subject.id = T2.id --and T2.id = 372

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2022-03-04
  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-02
  • 2021-11-08
  • 2022-12-23
相关资源
相似解决方案