C# SQL 把两个表中信息显示到一个DataGridView 中

2024-12-19 16:07:22
推荐回答(3个)
回答1:

用 select 表1.姓名,表2.职称 form 表1,表2 where 表1.ID=表2.ID 去做一个视图,你执行sql的时候执行这个视图就可以了。

回答2:

表1 table1 ,表2 table 2
select * from table1 as A inner join table as B on A.ID=B.ID
把两个表关联起来进行查询

回答3:

select 表1.姓名,表2.职称 form 表1,表2
where 表1.ID=表2.ID