Implicit conversion from data type varchar to money is not allowed

Error Message:

Implicit conversion from data type varchar to money is not allowed. Use the CONVERT function to run this query.

Solution: Convert is not going to work, use cast

CAST(“Column Name” AS VARCHAR)

Related Post

String Number conversion in JavaScript
How many ways shared data problem can be solved?
Initializing Array in JavaScript
Static in java
JSON communication between server and client Part1

Comments

Leave a Reply