0
I want to the syntax for if else syntax in sql query
I need query of if else in which when a value of column A is null then the column B which is using column A value in the formula which is applied in the column B must return null value not 0
2 Antworten
0
Abdul Hadi not all SQL engines would handle this the same way. Some provide functions to return an alternate value to NULL. See whether your SQL engine supports either ISNULL or COALESCE.
https://www.w3schools.com/SQL/func_sqlserver_isnull.asp
https://www.w3schools.com/SQL/func_sqlserver_coalesce.asp