mysql / sas 或 proc sql 中的分钟间隔
有谁知道 proc sql 或数据步骤有一个函数,我可以将日期时间值转换为:15 分钟间隔,例如:
03NOV2010:00:00:02 --> 0-15
03NOV2010:00:16:02 --> 15-30
Does any one know proc sql or data step have a function where I can convert datetime value into : 15 mins interval for example :
03NOV2010:00:00:02 --> 0-15
03NOV2010:00:16:02 --> 15-30
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您想将格式应用于日期时间值的分钟部分。
使用 SAS,您可以尝试以下操作:
这既快又脏,您可以根据您的要求进行调整。原则是我们只是创建一个显示格式来显示应用了某种格式的值。我单独创建了变量“b”,它只是日期时间的分钟部分,然后在变量“c”中应用该格式。
嗯。
Sounds like you want to apply a format to the minute component of a datetime value.
Using SAS, you could try something like:
This is just quick and dirty, you can adapt it to your requirements. The principle is that we are just creating a display format to show a value with a certain format applied to it. I've separately created the variable 'b', which is just the minute component of the datetime, then in variable 'c' I'm applying the format.
hth.
一种方法是将日期转换为 unix 时间戳。 unix 时间戳是自 1970 年 1 月 1 日以来的秒数。然后您可以对 15*60 取模来给出过去 15 分钟标记之后的秒数。
例如,使用当前时间
now()
:这会为我打印
20:00
(这里是 20:08。)One way is to convert the date to a unix timestamp. A unix timestamp is the number of seconds since January 1st, 1970. Then you can take the modulo of 15*60 to give the number of seconds past the last 15 minute mark.
For example, using the current time
now()
:This prints
20:00
for me (it's 20:08 here.)