sql server

select expertId,mail=
(
CASE mail
     WHEN '' THEN  ' '
else
    mail
end
)
 from Siemens.dbo.tblExpert

mysql

SELECT IF(1<2,'yes ','no');

相关文章:

  • 2021-05-29
  • 2022-02-02
  • 2022-01-30
  • 2022-01-01
  • 2021-12-19
  • 2021-06-22
  • 2021-11-07
  • 2022-12-23
猜你喜欢
  • 2021-10-26
  • 2021-12-05
  • 2021-08-27
  • 2021-07-31
  • 2023-02-08
  • 2021-11-20
相关资源
相似解决方案