主题:多表查询的语法
select a.name,a.number,b.Kui,b.G,c.bb,c.fc
from H1 a,H2 b,H3 c
where a.ID=b.ID=c.ID
"where a.ID=b.ID=c.ID"是错的 改成a.ID=b.ID and a.ID=c.ID 结果会不会一样
from H1 a,H2 b,H3 c
where a.ID=b.ID=c.ID
"where a.ID=b.ID=c.ID"是错的 改成a.ID=b.ID and a.ID=c.ID 结果会不会一样