用 select 表1.姓名,表2.职称 form 表1,表2 where 表1.ID=表2.ID 去做一个视图,你执行sql的时候执行这个视图就可以了。
表1 table1 ,表2 table 2select * from table1 as A inner join table as B on A.ID=B.ID把两个表关联起来进行查询
select 表1.姓名,表2.职称 form 表1,表2where 表1.ID=表2.ID