仅在保留日期的同时,仅适用于给定的时间戳
我想将启动时间增加30分钟而不更改日期。
这是我尝试的,但它给了我类型的不匹配错误。
UPDATE Meeting
SET starttime = starttime::time + 30
WHERE purpose = 'Staff';
我该怎么做?
Here is the picture of the table
I want to increment the startTime by 30 minutes without changing the dates.
This is what I tried but it gives me the type mismatch error.
UPDATE Meeting
SET starttime = starttime::time + 30
WHERE purpose = 'Staff';
How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
Interval
Add an
interval