Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
187 views
in Technique[技术] by (71.8m points)

How to use TO_Char() in SQL Server 2008

I am trying to convert the SQL statement to SQL Server 2008. So how can I do this? Below is my sql statement which I want to convert. I also try to resolve from the Stackoverflow question but I am not succeeding How to use TO_CHAR function functionality

SELECT 
    C_Debt_Payment.AD_Client_ID,  
   (CASE WHEN C_Debt_Payment.AD_Client_ID IS NULL THEN '' 
         ELSE (COALESCE(TO_CHAR(TO_CHAR(COALESCE(TO_CHAR(table1.Name), ''))),'') ) END) AS AD_Client_IDR

Thanks for your reply and comments

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

TO_CHAR is Oracle. In SQL Server, use CONVERT:

SELECT C_Debt_Payment.AD_Client_ID,  
  (CASE WHEN C_Debt_Payment.AD_Client_ID IS NULL THEN '' ELSE COALESCE(CONVERT(varchar(20),table1.name),'') END) AS AD_Client_IDR

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...