例如,我有两个表,其中一个是产品描述,另一个是“价格”,“注册日期”等数据。我想知道如何删除产品表中没有id的描述。
答案 0 :(得分:1)
类似的东西:
delete from ProductDescription
where productId not in (
select productId from Product
);
答案 1 :(得分:0)
考虑我们是否有两个表
delete from Description
where Id not in (
select Id from Product
);
我们需要删除decription'它的xyz'在产品表中没有id。 所以使用此查询
user_id = data[0] and data[0]['user_id'] and data[0]['user_id'][0]