我尝试将代码从MYSQL更改为SQL Server。
我在查询中遇到了一些特定功能(ADDTIME和SEC_TO_TIME)的问题。
以下是我必须更改的查询结尾:
order by j.idjour,j.heure,ADDTIME(j.heure,SEC_TO_TIME(pl.duree)) asc
我尝试使用convert
和DateAdd
,但我对如何更改它没有任何错误感到有点失望。
感谢您的帮助。
答案 0 :(得分:1)
这应该是你要找的,
dateadd(second, pl.duree, j.heure)
假设pl.duree
是表示秒的整数值,j.heure
是time
或datetime
值。