GETDATE() throwing exception

前端 未结 3 586
后悔当初
后悔当初 2021-01-18 00:08

I am creating a simple application where i am using MSAccess as database. When i am trying to retrieve the data using below query - i am getting exception <

3条回答
  •  伪装坚强ぢ
    2021-01-18 00:28

    GETDATE() is not a function inside MSAccess. The equivilant would be:

    Now() provides date and time

    Date() provides the date

    Time() provides the time

提交回复
热议问题