SQL数据库的表。怎么同时连接3个表查询。

SQL数据库的表。怎么同时连接3个表查询。,第1张

可以参考下面的方法:

1、select * from 表1,表2,表3 where 表1.字段=表2.字段 and 表1.字段=表3.字段

2、select * from 表1 join 表2 on 表1.字段=表2.字段 and join 表3 on 表1.字段=表3.字段

如果没有AND,前面就需要加括号了。

扩展资料:

参考语句

创建新表

create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)

根据已有的表创建新表: 

1、create table tab_new like tab_old (使用旧表创建新表)

2、create table tab_new as select col1,col2… from tab_old definition only

删除新表

drop table tabname 

参考资料来源:百度百科-SQL数据库

如果你两个数据库在同一个服务器上可以用

select

库1.x,库2.xx

from

库1.table1

,库2.table2

where

库1.table1.xxx=库2.table2.xxx

这种方式写

这样你只需要写一个库1的连接字符串。。。然后把语句丢给库1处理。。。

如果是两个不同服务器。。。还是用链接或存储过程吧。。。


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

原文地址: http://outofmemory.cn/sjk/6426216.html

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

发表评论

登录后才能评论

评论列表(0条)

保存