我有一张表,结构和数据如下:
id start_time end_time
23 2006-7-10 8:50:10 2006-8-10 18:00:00
67 2006-7-2 8:10:02 2006-7-2 17:35:00
67 2006-7-3 9:00:23 2006-7-3 17:34:00
67 2006-7-4 9:30:34 2006-7-4 17:40:00
67 2006-7-5 8:45:22 2006-7-5 17:10:00
67 2006-8-1 8:40:12 2006-8-1 17:45:00
67 2006-8-2 10:20:12 2006-8-2 21:02:15
start_time与end_time均为时间类型
现在要写一个SQL要求如下:
1、取出start_time是2006年7月,end_time也是2006年7月,如果end_time超过7月的,就按到7月31号算。取start_time和end_time的天数差。
我自己写的:
select user_id,sum(datediff('d',starrt_time,end_time)) as days from tables where user_id=23 group by user_id
结果是:user_id days
23 30
我想达到的效果是:
select user_id,sum(datediff('d',starrt_time,end_time)) as days from tables where user_id=23 and ??? group by user_id
结果是:user_id days
23 20
不知道我有没有表达清楚我的意思,如果我没有说清楚,请大家提出来!
谢谢各位老大了!帮帮忙吧!
[此贴子已经被作者于2006-8-9 10:35:51编辑过]