SQL语句 (100分)

  • 主题发起人 主题发起人 blackbutterfly
  • 开始时间 开始时间
B

blackbutterfly

Unregistered / Unconfirmed
GUEST, unregistred user!
多个表的串联查询应该怎么写呢?
 
select table1name.字段名1,tabel1name.字段名2,...table2.字段名1,...tablen.字段名1,
tableNname.字段名2,...tableNname.字段名N
from 所有的表名
where 所有的条件
 
两个表名之间应该用什么相连呢?
 
清儿的程序正确,可以COPY了
 
select t1.field1, t1.field2, t2.*
from table1 t1, table t2
where t1.field1 = t2.field2
and t1.field3 = t2.field100
 
后退
顶部