vb查询某日期之前或之后的数据
发布网友
发布时间:2024-10-23 20:26
我来回答
共3个回答
热心网友
时间:2024-11-09 15:35
数据库中也应该有日期相关的字段吧
用sql语句实现就行了。
select * from table where 日期>edit1.text
热心网友
时间:2024-11-09 15:33
Adodc1.ConnectionString = ConnString '连接
Adodc1.CommandType = 8
If Option1.Value = True Then
Adodc1.RecordSource = "select * from A2 where 日期<=" & "'" & Format(DTPicker1.Value, "yyyy-mm-dd") & "'"
Else
Adodc1.RecordSource = "select * from A2 where 日期>" & "'" & Format(DTPicker1.Value, "yyyy-mm-dd") & "'"
End If
Adodc1.Refresh
Set DataGrid1.DataSource = Adodc1
热心网友
时间:2024-11-09 15:34
sql="Select * from table where 时间" & iif(option1.value ,"<= '","> '") & dtpicker1.value & "'"