我需要将数据插入到MSSQL server 2000中。 现有字段的数据类型设置为MONEY(19,4)。
我正在尝试从PHP插入数据。发生以下错误:
Disallowed implicit conversion from data type varchar to data type money. Use the CONVERT function to run this query
尝试将我的变量CAST为MONEY时,
syntax error, unexpected 'AS' (T_AS)
在尝试CONVERT时,它说
Undefined function CONVERT()
请帮我解决一下。 感谢。