1. 首页
  2. 数据库
  3. 其它
  4. MySQL数据库update更新子查询

MySQL数据库update更新子查询

上传者: 2020-12-31 16:06:04上传 PDF文件 22.77KB 热度 29次
比如: UPDATE test.tb_vobile a set a.name = '111 ' WHERE a.id = (select max(id) id from test.tb_vobile) 报错: [SQL]UPDATE test.tb_vobile a set a.name = '111 ' WHERE a.id = (select max(id) id from test.tb_vobile) 以下可通过: UPDATE test.tb_vobile a join (select max(id) id
用户评论