关于SQL语句中循环语句的编写。查询公司所有会员卡第一次的刷卡时间和最后一次刷卡时间的汇总。
在table1表中记录了我们公司所有会员卡的刷卡记录,卡的字段是cardno,刷卡时间是date。每张卡,刷一次,都有一个记录。我想实现,提取每张卡的第一次消费记录,和最...
在table1表中记录了我们公司所有会员卡的刷卡记录,卡的字段是cardno,刷卡时间是date。每张卡,刷一次,都有一个记录。我想实现,提取每张卡的第一次消费记录,和最后一次消费记录。
请问,这个程序,该怎么写 展开
请问,这个程序,该怎么写 展开
4个回答
展开全部
select table1.*, firstime,lastime from
(select cardno,min(date) firstime,max(date) lastime
from table1
group by cardno)t
where t.cardno=cardno and (消费日期=t.firstime or 消费日期=t.lastime)
(select cardno,min(date) firstime,max(date) lastime
from table1
group by cardno)t
where t.cardno=cardno and (消费日期=t.firstime or 消费日期=t.lastime)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select cardno,date from table1 where date=max(date) or date=min(date)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select cardno,firsttime=min(date),lasttime=max(date)
from table1
group by cardno
这样吗
from table1
group by cardno
这样吗
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select cardno , max(date),min(date) from table1 group by cardno
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询