###user_name mobile product_type###
aaa 12345 1
aaa 12345 2
bbb 56789 2
ccc 23456 2
bbb 56789 1
ccc 23456 1
ddd 11111 1
eee 22222 2
我的 db.table 采用上述格式.....其中 2 代表 1 的副本(移动设备和名称都应该是唯一的)它必须具有原始 product_type 1 ....我想要 ##eee 22222 2## 的记录..如果你注意到它没有product_type 1 ..希望你明白......我试过了
SELECT * FROM `applications` a where a.product_type=2 and user_name in (select user_name from `partners_applications` where user_name=a.user_name) order by a.user_name
我知道这是错误的,你们能帮我解决...