数据库多对多模糊查询怎么实现?
type表和product表是多对多的关系。通过中间表建立关系。怎么查询能实现模糊查询,例如我在前台输入"南亚"。搜索出所有包含"南亚"的类型,以及找出这些类型对应的所有...
type表和product表是多对多的关系。通过中间表建立关系。怎么查询能实现模糊查询,例如我在前台输入"南亚"。搜索出所有包含"南亚"的类型,以及找出这些类型对应的所有产品。而且结果不重复。sqlserver、mysql 数据库都可以。
如果我想查询这样的结果,当pid有多条数据时,选择一个。而不要把tname 放到后面的查询语句怎么写?
pname price
香蕉 10.00
芒果 8.00 展开
如果我想查询这样的结果,当pid有多条数据时,选择一个。而不要把tname 放到后面的查询语句怎么写?
pname price
香蕉 10.00
芒果 8.00 展开
8个回答
展开全部
明天楼主的意思了,楼主是想通过type查询且仅查询产品的信息,那么根本不需要关联type表;
select p.pname,p.price from product p
where exists(select 1 from type t,middle m where t.tid=m.tid and m.pid=p.pid
and t.tname like '%南亚%')
根本不需要考虑去过滤重复,不需要distinct,因为你要查询的就是product表的信息;
select p.pname,p.price from product p
where exists(select 1 from type t,middle m where t.tid=m.tid and m.pid=p.pid
and t.tname like '%南亚%')
根本不需要考虑去过滤重复,不需要distinct,因为你要查询的就是product表的信息;
展开全部
select c.pname, c.price , a.tname
from type a, middle b, product c
where a.tid = b.tid and c.pid = b.pid and a.tname like '%南亚%';
oracle 的, 其他数据库改一下 like 部分和通配符就可以.
from type a, middle b, product c
where a.tid = b.tid and c.pid = b.pid and a.tname like '%南亚%';
oracle 的, 其他数据库改一下 like 部分和通配符就可以.
追问
如果要不同的结果呢。如果想得到如下图的搜索结果的查询语句是什么?就是后面不要tname了。
追答
select distinct c.pname, c.price
from type a, middle b, product c
where a.tid = b.tid and c.pid = b.pid and a.tname like '%南亚%';
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
pt 是两表type 和 product 的中间表 有3个字段(pt_id,p_id,t_id)
select p.pname,p.price,t.tname from prodoct p left join pt on p.pid=pt.pid left join type t on pt.tid=t.tid where tname like '南亚%'
select p.pname,p.price,t.tname from prodoct p left join pt on p.pid=pt.pid left join type t on pt.tid=t.tid where tname like '南亚%'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select p.pname,p.price,t.tname from product p left join middle m
on p.pid = m.pid left join type t on m.tid = t.tid where t.tname like '%南亚%'
on p.pid = m.pid left join type t on m.tid = t.tid where t.tname like '%南亚%'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select distinct pname,price,tname from type,middle,product where middle.tid=type.tid and middle.pid=product.pid and tname like '%南亚%'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询