您的位置首页百科知识

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

可以参考此毕下面的方法:

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,前面就需要加括号了。

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

扩展资料:

参考语句

创建新表  

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数渣搜据库