不用from的更新
update不与from连用的更新该怎么进行啊?
是根据一个表中的数据更新另一张表
[解决办法]
update updateTableName
set updateColName = (select colname from tablename where ...)
where ...
[解决办法]
只能from
[解决办法]
update updateTableName
set updateColName=(select max(colname) from tablename b where b.key=updateTableName.key)
where ...
[解决办法]
那你要怎麼樣? 邏輯說清楚