摘要:
好像只有在 mysql 中有此限制,解决方法就是不要在 update 的 where 语句中直接使用 select 子查询,再嵌套一层就可以了。。。 例如:update tablename set xx=0 where id in (select id from (select id from anothertable) as t) 阅读全文
摘要:
0、在执行 docker 操作时,总是提示错误:no space left on device 1、检查 linux 磁盘占用:df –h 2、了解到 linux 下还有另一个有关磁盘文件的占用 inode:df –ih 了解更多:http://www.ruanyifeng.com/blog/2011/12/inode.html 3、发现 inode 占用已经 100% 4、搜索了一下,发现 do... 阅读全文