如何用SQL语句查询两张表中的相同字段数据

2025-02-23 14:27:04
推荐回答(2个)
回答1:

select * from 表1 t1 inner join 表2 t2 on t1.字段名=t2.字段名

回答2:

这种问题最好给举个例子