
mysql
文章平均质量分 78
iteye_15057
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysql 不能使用别名
MySQL版本5.0insert delete 操作是不允许使用表别名的。update where条件中不允许自连接update test set id=1 where pid in(select id from test where pid=12); 是不允许的。 解决办法: update `a` as `c1`, `a` as `c2` set `c1`.`id` = ...原创 2010-10-09 12:10:35 · 455 阅读 · 0 评论 -
解决mysql“Access denied for user 'root'@'localhost'”
# mysql -uroot -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 使用网上介绍的方法修改root用户的密码: # mysqladmin -uroot -p password 'newpassword' Enter pass...2010-04-17 11:43:29 · 107 阅读 · 0 评论