关于一个去除重复记录的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表中用的。 展开
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表中用的。 展开
3个回答
展开全部
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
试试这样
tbl_jingwei_push a,
(select count(*) as total_sended from tbl_jingwei_push where state=1 and content=a.content group by content ) e
试试这样
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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
tbl_jingwei_push a,
(select count(*) as total_sended from tbl_jingwei_push where state=1 and e.content=a.content) e
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询