我有下表,我需要删除满足给定条件的行。
请帮我。
桌子:Product
productId productname datecreated
1 sample1 20/01/2012
2 sample1 20/01/2012
3 sample2 20/02/2012
4 sample2 20/02/2012
5 sample2 20/09/2012
6 sample1 20/08/2012
桌子:Category
categoryid categoryname
1 cat1
2 cat2
3 cat3
桌子:ProductCategory
postid categoryid
1 1
4 2
现在我想删除第一个表中包含count > 1 group by productname
and的行以及表 datecreated
中不包含的行productcategory
即,我想删除
ProductId 2 and ProductId 3
因为它具有相同ProductName
的相同DateCreated
并且也不包含在ProductCategory
表中
提前致谢