在特定的业务场景下、有时候需要进行其他数据库的连接和join查询、下面是总结的几种方式!一、在同一主机跨库查询在不加库名情况!你是默认找不到表的!在sql查询的时候加上指定其他库名例子: select * from wk_user u left join video.wk_order o on o.userId=u.user_id where u.user_id=1; 二、使用FEDERAT...
原因 搭建的centos7的mysql的yum源进行安装、准备做测试环境。第二天发现登录虚拟机进入mysql操作报错error:1820mysql> SHOW DATABASES;
ERROR 1820 (HY000): You must SET PASSWORD before executing this statement
Keep in mind that this does n...