Link to home
Start Free TrialLog in
Avatar of Lawrence Salvucci
Lawrence SalvucciFlag for United States of America

asked on

Remove NULL from results of SQL Query

How can I remove the word NULL from my SQL query results? I have these two columns in my query that return NULL when there is no value. How can I fix this?

CONVERT(Decimal(10, 2), N1.ShippedQty) AS ShippedQty, '$' + CONVERT(varchar(10), CONVERT(money, N1.ShippedQty * S2.funetprice)) AS ShippedAmount

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Lawrence Salvucci

ASKER

Thank you very much!!