UNION Operation Example (DAO)

Microsoft Jet SQL Reference

UNION Operation Example

This example retrieves the names and cities of all suppliers and customers in Brazil.

This example calls the EnumFields procedure, which you can find in the SELECT statement example.

Sub UnionX()

    Dim dbs As Database, rst As Recordset

    ' Modify this line to include the path to Northwind

    ' on your computer.

    Set dbs = OpenDatabase("Northwind.mdb")

    

    ' Retrieve the names and cities of all suppliers

    ' and customers in Brazil.

    Set rst = dbs.OpenRecordset("SELECT CompanyName," _

        & " City FROM Suppliers" _

        & " WHERE Country = 'Brazil' UNION" _

        & " SELECT CompanyName, City FROM Customers" _

        & " WHERE Country = 'Brazil';")

    

    ' Populate the Recordset.

    rst.MoveLast

    

    ' Call EnumFields to print the contents of the

    ' Recordset. Pass the Recordset object and desired

    ' field width.

    EnumFields rst, 12

    dbs.Close

End Sub