我正在尝试使用( )更新我的mysql
表“upproj” 。我想执行以下查询:Visual Studio 2010
c#
string Query = " update tlog.upproj set summ=(select sum(grade) from tlog.upproj group by ams having count(*) =2); ";
但我得到错误
"You can't specify target table 'upproj' for update in FROM clause".
当我在Mysql
查询浏览器上执行上一个查询时,我没有收到任何错误,但我的项目需要从 Visual Studio 执行此查询。
有没有办法解决这个问题?