User-797751191 posted
Hi
I have below statement , i want to concatenate 2 columns & also check for Null Value
using (SqlCommand cmd = new SqlCommand("SELECT CONCAT(IsNull([Name],''), ' ', IsNull([Name 2],'')) as Name,CONCAT(IsNull([Address],''), ' ', IsNull([Address 2],''), ' - ',IsNull([City],'')) as Address FROM [Customer] Where [No_]=@Cu", con))
Thanks