如何使用SQL语句在一个表中查询: 同一个人购买两个以上相同产品的记录?要求显示所有符合条件的人.
展开全部
select SaleID,GoodsID from Table
group by SaleID,GoodsID
例如:
select f1,f2,...,fn
from table
group by f1,f2,...,fn
having count(1)>1 查出存在相同的f1,f2,..,fn
想查找出记录则
select t1.* from table t1
扩展资料:
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like ’%value1%’ (所有包含‘value1’这个模式的字符串)
排序:select * from table1 order by field1,field2 [desc]
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
参考资料来源:百度百科-sql语句
展开全部
select 人名,商品名 from 表名 group by 人名,商品名 having count(*)>=2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
按人分组,统计数量,大于2的就查询出来 。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select username from usertb u where exists (
select o.userid,o.productid, count(*) from order o where u.userid=o.userid group by o.userid,o.productid having count(*)>1)
用户表: usertb(userid,username,……)
订单表:order(orderid,userid,productid,……)
select o.userid,o.productid, count(*) from order o where u.userid=o.userid group by o.userid,o.productid having count(*)>1)
用户表: usertb(userid,username,……)
订单表:order(orderid,userid,productid,……)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
group by …… having
比如表table中有 人名Name,产品名products
select Name from table group by name,products having count(*)>2
比如表table中有 人名Name,产品名products
select Name from table group by name,products having count(*)>2
追问
你的方法我用过,不知道你有没有注意我的要求,我需要显示所有的字段,而你的方法只显示了人名(NAME)
追答
你可以根据人名再去查找这个人的信息,你没提供你的表信息,我也就不好确定了。
select * from user表 where username in (select Name from table group by name,products having count(*)>2)
这样不就OK了么,呵呵
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询