Use IN and like in where clause : SQL Select « Access « VBA / Excel / Access / Word

VBA / Excel / Access / Word
1. Access
2. Application
3. Data Type
4. Data Type Functions
5. Date Functions
6. Excel
7. File Path
8. Forms
9. Language Basics
10. Math Functions
11. Outlook
12. PowerPoint
13. String Functions
14. Windows API
15. Word
16. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Access » SQL Select 
Use IN and like in where clause
 
Sub CreateRst_WithSQL()
   Dim conn As ADODB.Connection
   Dim myRecordset As ADODB.Recordset
   Dim strConn As String

   strConn = "Provider = Microsoft.Jet.OLEDB.4.0;" & _
      "Data Source=" & CurrentProject.Path & _
      "\mydb.mdb"

   Set conn = New ADODB.Connection
   conn.Open strConn

   Set myRecordset = conn.Execute("SELECT * FROM Employees WHERE City IN ('Redmond', 'London') AND ReportsTo LIKE 'Buchanan, Steven' ")
   Do Until myRecordset.EOF
       For Each fld In myRecordset.Fields
          Debug.Print fld.Name & "=" & fld.Value
       Next fld
       myRecordset.MoveNext
   Loop

   
   myRecordset.Close
   Set myRecordset = Nothing
   conn.Close
   Set conn = Nothing
End Sub

 
Related examples in the same category
1. Using Date field type in select statement
2. You must use a pound symbol (#) when delimiting dates for Microsoft Access, like this:
3. Loop through the ResultSet after executing select statement
4. Creating a Select Query with ActiveX Data Objects
5. Executing a Select Query
6. Modifying a Select Query
7. Get only one column
8. Get more than one column
9. Select all columns
10. Use IN in select statement
11. Use Date function in where clause
12. Use between and with number type column
13. Use Is NULL to check if a column is null
14. Use Not In
15. Use Between And
16. Use 'Is not null'
17. Use 'Select all'
18. Order the resultset with Order by clause
19. Get DISTINCT records
20. Get DISTINCTROW
21. Get the top 5 percent
22. Get the top 10 percent
23. Order record in a decscending order
24. Add where clause to the select statement
25. Use and to combine conditions
26. Use wild card character in link
27. Use where clause and order by clause together
28. Order by two fields
29. use SUM in sql statement
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.