- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。
在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)2017-12-12 00:00:00,我需要显示 2017-12-12 之前的 8 个事件,按时间 DESC 排序。
这就是我的表格的设置方式:
-calendarrepeat
-dayofweek // int 1-7; 1 = monday, 7 = sunday
-event_date_begin // date "2016-05-01" - indicates from which day the event recurrs every week (dayofweek)
-event_date_end // date "2017-05-02" - indicates until which day the event recurrs every week (dayofweek)
-event_hour_begin // time "11:00:00"
-event_hour_end // time "12:00:00"
我可以用时间戳做任何我想做的事。我用Carbon因此,获取一年中的星期、一年中的某一天或我需要的其他任何内容都不是问题。
供引用$fullTs
是我传递到 Controller 的时间戳。连接部分工作正常。
我需要帮助的部分是:/* THIS PART has to be rewritten (it's COMPLETELY wrong at the moment) ! */
我需要从年份(作为参数传递)、weekOfYear(作为参数传递)、星期几(从数据库列)和时间(数据库列)生成时间戳图。我需要这样的东西(pseudoSQL):
->where(\DB::raw('THISTHINGY_TO_DATE($fullTs->year $fullTs->weekOfYear calendarrepeat.dayofweek calendarrepeat.event_hour_begin, "%Y %week-of-year %day-of-week %H:%i:%s), '<', $fullTs)))
这是我当前正在运行的完整查询(UNION 的第一部分,第二部分按预期工作):
$eventsRepeat = CalendarRepeat::join('calendarrepeat_translations', function ($j) use ($locale) {
$j->on('calendarrepeat.id', '=', 'calendarrepeat_translations.calendarrepeat_id')
->where('calendarrepeat_translations.locale', '=', $locale);
})
->orderBy('calendarrepeat.event_date_begin', $orderBy)
/* THIS PART has to be rewritten (it's COMPLETELY wrong at the moment) ! */
/* the STR_TO_DATE(..) part has to get date from a) week passed in $fullTs b) dayoftheweek written in calendarrepeat.dayoftheweek c) time written in calendarrepeat.event_hour_begin */
->where(\DB::raw("STR_TO_DATE(CONCAT(calendarrepeat.event_date_begin, ' ', calendarrepeat.event_hour_begin), '%Y-%m-%d %H:%i:%s')"), '<', $fullTs)
->where('event_date_begin', '>', $fullTs)
->where('event_date_end', '<', $fullTs)
->limit(8)
->select([
'calendarrepeat.event_date_begin as date', 'calendarrepeat.event_hour_begin as start',
'calendarrepeat.event_hour_end as end', 'calendarrepeat_translations.title as title', \DB::raw("CONCAT(calendarrepeat.event_date_begin, ' ', calendarrepeat.event_hour_begin) as date_whole") // This is also wrong
]);
这可能吗?如何?有没有更好的方法来做到这一点?
另一件需要注意的事情是,在我们的数据库中,1 = 星期一,7 = 星期日,据我了解,这不是枚举工作日的常用方法。
提前致谢。
最佳答案
尝试一下并检查您得到的结果:
$eventsRepeat = CalendarRepeat::join('calendarrepeat_translations', function ($j) use ($locale) {
$j->on('calendarrepeat.id', '=', 'calendarrepeat_translations.calendarrepeat_id')
->where('calendarrepeat_translations.locale', '=', $locale);
})->select([
'calendarrepeat.id',
'calendarrepeat_translations.calendarrepeat_id',
'calendarrepeat_translations.locale','calendarrepeat.event_date_begin as date',
'calendarrepeat.event_hour_begin as start',
'calendarrepeat.event_hour_end as end',
'calendarrepeat_translations.title as title',
\DB::raw("CONCAT(calendarrepeat.event_date_begin, ' ', calendarrepeat.event_hour_begin) as date_whole")
])->where(\DB::raw("STR_TO_DATE(CONCAT(date, ' ', start), '%Y-%m-%d %H:%i:%s')"), '<', $fullTs)
->where('date', '>', $fullTs)
->where('end', '<', $fullTs)
->orderBy('date', $orderBy)
->limit(8);
关于php - MySQL如何从年份(参数)、weekOfYear(参数)、时间(数据库)和dayofweek(数据库)创建时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44029852/
我需要根据一年中的哪一周对 MySQL 表进行分区。但是,当我使用 weekofyear() 作为我的分区表达式运行我的分区查询时,我得到了这个: ERROR 1564 (HY000): This p
我的网络服务器在法国,我的数据库设置了欧洲巴黎时区...我的网站实际上是供居住在葡萄牙的人们使用的,他们得到的收入比我在法国少 -1H... 我正在使用此查询来获得本周的点赞数。问题是当它是法国的新一
我希望能够运行一个简单的查询来显示 3 周前一年中的第几周。我尝试了以下方法,但没有成功。 select WEEKOFYEAR(CURDATE()) - INTERVAL 3 WEEK 最佳答案
过去一周左右我一直在研究这个问题,但似乎无法找到解决方案。我正在尝试创建一个查询,在其中从各个表中获取数据,主要是按周(weekofyear)聚合日期。因此,我创建了一个日历表,如下所示; DA
我正在尝试使用以下代码从 NSDate 中获取一年中的星期几: int which = NSYearCalendarUnit | NSMonthCalendarUnit | NSHourCalenda
所以我正在制作一个基本的周选择器,您可以在其中选择周数和年份,并从周起点获取相应的日期。 一个基本的测试场景 let calendar = NSCalendar.currentCalendar() l
当我运行这段代码时: let calendar = Calendar.current var dateComponents = DateComponents() dateCompone
我有一个根据用户选择的日期范围执行的查询。例如:2019年12月12日至2020年1月13日。 // Retrieve count of attendance, no shows and cancel
我在使用某些 MYSQL 时遇到问题。下面的代码一直运行良好,直到一两周前它开始将 2012 年 2 月 21 日之后的所有内容分组在一起。第一个条目是 2011 年 9 月 18 日,所以它已经整整
这是数据生成器代码以及用于解决我的问题的按 weekofyear 分组的 grouby 函数: import pandas as pd import numpy as np np.random.see
我有由年份、该年的周数和工作日标识的日期值,我想将它们转换为简单的日期。 我找不到一个函数或其他简单的方法来组合这些,所以我想出了一个解决方法,使用 generate_series 来获取一个范围内的
weekofyear('20121231') 返回 1 而 weekofyear('20121230') 返回 52 Mysql Ver 5,1,47 Cummunity Nt / Windows 7
我在 Hadoop 文件系统中有一个带有日期列的表。问题是,当我调用 weekofyear(date) 函数时,date = '2014-12-30 09:17:10' 返回 1 。我完全理解为什么会
这个问题在这里已经有了答案: How to get the first day of a given week number in PHP (multi-platform)? (9 个回答) 关闭
在我的应用程序中,我必须设置每周提醒,以便在一周后的同一天/同一时间发出警报。我一直在使用 NSDateComponenents.week = 1 并将其添加到 NSDate,使用 NSCalenda
我不太确定为什么我的代码给出 52 作为答案:weekofyear("01/JAN/2017") . 有没有人对此有可能的解释?有一个更好的方法吗? from pyspark.sql import S
static void Job5(Args _args) { int i; System.DateTime netDttm; System.Int32 intne
是否可以使用 Java lib JODA Time 从 创建日期 年份 一年中的第几周(1 到 52 或 53,视情况而定) 星期几(1 到 7)? Java 有一个 Calendar 函数可以计算它
只是想知道是否有人可以阐明为什么会出现以下查询(注意:今天的日期是 2018 年 5 月 1 日) SELECT WEEKOFYEAR(NOW()); 给出的结果是 18。 但是查询:SELECT W
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。 在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)
我是一名优秀的程序员,十分优秀!