我有两个表产品表和状态表
并且有 1 ton n 关系
Product table
----------------------
id | product
1 XYZ
2 ABC
3 HJK
4 PQR
5 SWE
----------------------
status_table
--------------------------------
id | col1 | col2 | priduct_id
2 s1 ss1 2
3 s2 xs1 3
5 s1 ss1 3
4 s1 xs1 4
4 s3 xs2 4
4 s2 ss2 4
4 s3 xs2 4
5 ww sw2 5
-------------------------------------
我想选择所有状态不等于 = S3 的产品
我试过这个
select product_Table.product from product_Table
inner join status_table on
product_table.id = status_table.id
where status_table.col1 <> 's3'