可以,这个是最基本的查询方法,也是经常用到的。
方法如下:
select * from table1,table2 where table1.field1= table2.field1
上面这句可以查询两个表中所有field1相等的数据
select 表名.列名 from table1,table2 where table1.field1= table2.field1
上面这句可以查询两张表中相同field1项中‘表名’中‘列名’项的数据,上面查询字段自己加,但是要记得前面要加上'表名.',因为存在相同字段的时候需要用表名来区别。
楼主试试吧~
当然可以
select t1.field1,t2.field1
from a.table1 as t1,b.table2 as t2
where .....