首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

mysql 语句有关问题?有答就给分

2012-03-24 
mysql 语句问题?有答就给分update from account_info set effectmoney‘+IntToStr(type)+ where userno

mysql 语句问题?有答就给分
update from account_info set effectmoney=‘"+IntToStr(type)+"' where userno=‘"+conn+"' 请问这句语句有错吗?

[解决办法]
好像是

update 表名 set 字段=XXX where 字段=XXX 应该是这样的吧.

如果你一定要用FORM

update 表名set 字段=b.字段 from 表名1 a,表名2 b where a.id=b.id and 字段=XXX


[解决办法]
update account_info set effectmoney=‘"+IntToStr(type)+"' where userno=‘"+conn+"'这样就应该可以!!

热点排行