摘要: 1. 如何修改Mysql的用户密码 mysql> update mysql.user set password=password('hello') where user='root'; mysql> flush privileges; 2. 关于分区数量的限制 Prior to MySQL 5.6. 阅读全文
posted @ 2015-12-01 16:51 iVictor 阅读(2235) 评论(1) 推荐(0) 编辑
摘要: 在看《MySQL 5.1参考手册》的时候,发现MySQL提供了一种两表关联update操作。原文如下:UPDATE items,month SET items.price=month.priceWHERE items.id=month.id;在MySQL中构造表验证了一下mysql> select ... 阅读全文
posted @ 2015-12-01 16:03 iVictor 阅读(2375) 评论(0) 推荐(1) 编辑