可以通过两个时间戳进行排序并显示同一行两次
我正在考虑创建一个时间表解决方案。 我有一个任务表,看起来像
区域 1 项目 1 开始时间 结束时间
区域1 item1 startTime endTime
我希望创建一个显示,我可以在其中查看接下来发生的事情,endTime 或 startTime
即
纽卡斯尔卷轴 16:45 18:45
纽卡斯尔卷轴2 17:45 19:45
会输出
纽卡斯尔卷轴 16:45
纽卡斯尔转盘 17:45
纽卡斯尔卷轴 18:45
纽卡斯尔卷轴 19:45
更重要的是,我想检测时间是开始时间还是结束时间,我必须为每个活动输入两行(时间、区域、项目、开始|结束)。我可以让界面创建两行。我只是想知道是否有更好的解决方案。
I'm looking at creating a time table solution.
I have a task sheet that looks like
Area 1 item 1 startTime endTime
Area 1 item1 startTime endTime
I wish to create a display where I can view what even is happening next, either endTime or startTime
i.e.
Newcastle reel 16:45 18:45
Newcastle reel2 17:45 19:45
would output
Newcastle reel 16:45
Newcastle reel 17:45
Newcastle reel 18:45
Newcastle reel 19:45
More so, I would like to detect if the time is a startTime or an endTime would I have to enter two rows for each activity (time,area,item, start|end). I can make the interface to the creation of two rows. I just wondered if there was a better solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用现有架构,此查询应该可以工作:
基本上,您选择所有开始时间,然后选择结束时间,然后对它们进行排序。
With your existing schema, this query should work:
Basically, you're selecting all the start times, then the end times, then sorting them.
您可以有一个带有
和一个带有
的事件详细信息表,然后您可以执行
select time, type, description from event left join event_details on event.details_id = event_details .id 按时间排序
。这应该会给你想要的输出。
如果您想获得每行中包含开始和结束时间的输出,那么您需要执行类似
select event_details.description, min(time) as start, max(time) as end from event left join event_details on event .details_id = event_details.id 按 event_details.description 分组
。You could have an event table with
and an event details table with
You can then do
select time, type, description from event left join event_details on event.details_id = event_details.id order by time
.This should give you the desired output.
If you want to get output with start AND end times in each row, then you need to do something like
select event_details.description, min(time) as start, max(time) as end from event left join event_details on event.details_id = event_details.id group by event_details.description
.