Private Sub Command0_Click()
Dim i As Integer
Dim stemp As String
Dim Rs As ADODB.Recordset
Set Rs = New ADODB.Recordset
stemp = "Select * From 查询"
Rs.Open stemp, CurrentProject.Connection, adOpenKeyset, adLockOptimistic
Rs.Source = "SELECT 表.序号, 表.内容1, 表.内容2, 表.内容3 FROM 表 WHERE (((表.序号)<2))"
End Sub