关于一个去除重复记录的sql语句

我要查询一个表中content字段相同的记录的详细信息。其中每条记录都有一个标识符state,0表示未发送,1表示已发送。我要统计所有content相同的记录的信息,包括... 我要查询一个表中content字段相同的记录的详细信息。其中每条记录都有一个标识符state,0表示未发送,1表示已发送。我要统计所有content相同的记录的信息,包括其中已发送(state=1)的记录。请问大家看看我这样写有什么问题?
select distinct content,name,push_date,total,e.total_sended from
tbl_jingwei_push a,
(select count(*) as total_sended from tbl_jingwei_push where state=1 and content=a.content) e

这样查出的其他字段都是符合要求的,唯独e.total_sended的结果出问题,它显示的是表中所有state=1的记录,请问大家我要怎么改呢?
这个sql语句是不对的。表a是错误的。请大家指点迷津,我要统计content相同并且state为1的记录数目。谢谢各位 。我就是想去掉重复记录并统计一下,只不过如果state=1的话,我要统计一下state=1的记录数。前提是这些记录的content是相同的。

二楼回答的不对,这和我写的是一样的,a表是不能在e表中用的。
展开
 我来答
华夏日长兴
2009-08-24 · TA获得超过9592个赞
知道大有可为答主
回答量:6305
采纳率:85%
帮助的人:3747万
展开全部
select distinct content,name,push_date,total,sum(case state when 1 then 1 when 0 then 0 end) as total_sended from tbl_jingwei_push

以上,希望对你有所帮助!
hrhero
2009-08-24 · TA获得超过142个赞
知道小有建树答主
回答量:187
采纳率:0%
帮助的人:88.5万
展开全部
select distinct content,name,push_date,total,e.total_sended from
tbl_jingwei_push a,
(select count(*) as total_sended from tbl_jingwei_push where state=1 and content=a.content group by content ) e

试试这样
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
柴关贵深0m
2009-08-24 · TA获得超过1142个赞
知道小有建树答主
回答量:1270
采纳率:0%
帮助的人:0
展开全部
select distinct content,name,push_date,total,e.total_sended from
tbl_jingwei_push a,
(select count(*) as total_sended from tbl_jingwei_push where state=1 and e.content=a.content) e
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式