假设我有一个产品表、用户表以及用户制作的产品的“喜欢”表。像这样的东西:
create table likes (
user_id int unsigned not null,
product_id int unsigned not null,
rating set('like','dislike') not null,
primary key (user_id, product_id)
);
在特定产品的页面上,我想查询“likes”表以找到一些其他产品也被喜欢该特定产品的用户“喜欢”。这个查询会是什么样子?