随笔分类 - database
数据库
只有注册用户登录后才能阅读该文。
只有注册用户登录后才能阅读该文。
只有注册用户登录后才能阅读该文。
只有注册用户登录后才能阅读该文。
摘要:1、文件备份 2、dump mysqldump -h 192.168.102.73 -uroot -p123456 edc >/webapp/edcapp/edc.sql mysql -h 192.168.102.73 -uroot -p123456 edc</webapp/edcapp/edc.s
阅读全文
摘要:MySQL升级到5.0.17后,在执行sql语句INSERT INTO `news` (`ID`, `Title`, `Content`) VALUES ('', '标题', '正文');时出现错误:#1264 - Out of range value adjusted for column 'ID
阅读全文
只有注册用户登录后才能阅读该文。
摘要:select t1.id,t2.idfrom t1left join t2 on t1.id = t2.id and t1.id>1 and t2.id<>3在mysql的left join中条件放在on后面和在where后面是不同的; 1. on后面只针对于t2表进行过滤,所以上面的t1.id>1
阅读全文