mysql两个数据库的表能连接查询吗?

mysql两个数据库的表能连接查询吗?,第1张

可以,前面加上模式名就行了\x0d\x0a\x0d\x0aselect *\x0d\x0afrom 数据1.tablename, 数据库2.tablename\x0d\x0awhere 链接条件。\x0d\x0a\x0d\x0a这是一个在我本机上跑过的例子,没有链接条件,是个笛卡尔积:\x0d\x0aselect * from hibernate.card_t,wedb.article_t

mysql中,可用库名前缀同时查询两个数据库中的数据。

工具:mysql

5.6

步骤:

1、如图可见,在本地localhost中有2个数据库,分别是badkano和badkano_test。

2、假如两个数据库中有相同的表student,数据分别如下:

3、要同时查询两个数据库中的上边两张表,语句如下:

select * from badkano.student

union all

select * from badkano_test.student4、查询结果就将2个库中的数据一起查出来了:

mysql支持多个库中不同表的关联查询,你可以随便链接一个数据库

然后,sql语句为:

select * from db1.table1 left join db2.table2 on db1.table1.id = db2.table2.id

只要用数据库名加上"."就能调用相应数据库的数据表了.

数据库名.表名

扩展资料

mysql查询语句

1、查询一张表:     select * from 表名;

2、查询指定字段:select 字段1,字段2,字段3....from 表名;

3、where条件查询:select 字段1,字段2,字段3 frome 表名 where 条件表达式;

例:select * from t_studect where id=1

  select * from t_student where age>22

4、带in关键字查询:select 字段1,字段2 frome 表名 where 字段 [not]in(元素1,元素2);

例:select * from t_student where age in (21,23)     

   select * from t_student where age not in (21,23)

5、带between and的范围查询:select 字段1,字段2 frome 表名 where 字段 [not]between 取值1 and 取值2;

例:select * frome t_student where age between 21 and 29

     select * frome t_student where age not between 21 and 29


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/6128271.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-15
下一篇 2023-03-15

发表评论

登录后才能评论

评论列表(0条)

保存