I need help with a SQL convert statement. I have NetQuanity (masterTable) which is a varchar(15) and I have another table with Purchase price (PO TABLE) which is money. When I try to multiply them in a SQL view is gives me the error:

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your field is a VARCHAR, you’ll need to CAST to the appropriate data type prior to your operation. e.g.
Be forewarned however, if you attempt to CAST this field to a numeric data type and it’s not numeric, you’ll be in the same boat.
I would recommend using
CASToverCONVERTin your example, for the following reason defined in this SO post:Related: T-SQL Cast versus Convert