ASP select 子句中包含一个保留字、拼写错误或丢失的参数,或标点符号不正确

2024-11-27 23:35:41
推荐回答(3个)
回答1:

sql3="select sum(Lmoney) as money from LT where Vid='"&Vid&"'"
as 后面的 money 是SQL的保留字段,数据类型中有这个,是货币类型。
你换一个其他名字。比如:MyMoney,Total等等。

回答2:

money 是SQL 保留字,建议用其他字符(money1,m,mon等)替代,或者用[]刮号刮起来使用!
希望对你的问题有所帮助!

回答3:

money 是SQL 保留字

sql3="select sum(Lmoney) as money from LT where Vid='"&Vid&"'"
改为:
sql3="select sum(Lmoney) as mymoney from LT where Vid='"&Vid&"'"