最新消息:关注【太平洋学习网】微信公众号,可以获取全套资料,【全套Java基础27天】【JavaEE就业视频4个月】【Android就业视频4个月】

[Err] 1241 - Operand should contain 1 column(s)错误解析

数据库 太平洋学习网 浏览 评论

SQL执行delete in条件语句时,出现“[Err] 1241 - Operand should contain 1 column(s)”错误,在Eclipse中也报了如下错误:

### Error updating database.  Cause: java.sql.SQLException: Operand should contain 1 column(s)

### The error may involve com.voavoice.english.dao.ToparticleMapper.deleteByMinTime-Inline

### The error occurred while setting parameters

### SQL: delete from toparticle where id in (SELECT id,MIN(top_time) FROM `toparticle` where article_type= ?)

### Cause: java.sql.SQLException: Operand should contain 1 column(s)

; bad SQL grammar []; nested exception is java.sql.SQLException: Operand should contain 1 column(s)

错误解析:

小编的in条件语句是这样的,如下:

delete from toparticle where id in (SELECT id,MIN(top_time) FROM `toparticle` where article_type='666666')

出现这样的而错误,是因为in条件后面有多个字段造成的,因为in条件只能存在一个字段,不可能混杂使用,因此得改成类似如下这样,去掉一个字段即可:

delete from toparticle where id in (SELECT id FROM `toparticle` where article_type='666666')
来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/mysql_oracle/773.html
"文章很值,打赏犒劳作者一下"
微信号: Javaweb_engineer

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

与本文相关的文章

发表我的评论
取消评论

表情

您的回复是我们的动力!

  • 昵称 (必填)

网友最新评论