急!!!VB下SQL语句中的的NOW 函数
发布网友
发布时间:2022-04-09 10:38
我来回答
共3个回答
热心网友
时间:2022-04-09 12:07
下面的时间取自客户端的计算机系统时间
Data3.RecordSource = "UPDATE 固定车位信息 set 最近一次取车时间 ='" & now() &"' Where 车牌号 = '" & Text7.Text & "'and 会员卡号 ='" & Text8.Text & "'"
如果你希望使用SQL服务器的时间
Data3.RecordSource = "UPDATE 固定车位信息 set 最近一次取车时间 = getdate() Where 车牌号 = '" & Text7.Text & "'and 会员卡号 ='" & Text8.Text & "'"
不同的数据库获取系统时间的用法不同
ms sql getdate()
mysql now()
oracle sysdate()
热心网友
时间:2022-04-09 13:25
Private Sub Command3_Click()
Data3.RecordSource = "UPDATE 固定车位信息 set 最近一次取车时间 =#" & now() & "# Where 车牌号 = '" & Text7.Text & "'and 会员卡号 ='" & Text8.Text & "'"
End Sub
热心网友
时间:2022-04-09 15:00
sql="select * from tb_member where regtime>dateadd(d,-1,getdate())"