Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim strSQL As String
strSQL = "SELECT field1, field2, field3 "
strSQL = strSQL & "FROM tblName1 "
strSQL = strSQL & "INNER JOIN tblName2 "
strSQL = strSQL & "ON tblName1.field1 = tblName2.field2 "
strSQL = strSQL & "WHERE field4 = 42"
rst.Open strSQL
Dim strSQL As String
strSQL = "SELECT field1, field2, field3 " _
& "FROM tblName1 " _
& "INNER JOIN tblName2 " _
& "ON tblName1.field1 = tblName2.field2 " _
& "WHERE field4 = 42"
rst.Open strSQL