BackPrevious Topic  Next TopicNext

Working with Union Queries

You can combine specified records from more than one query into a result set using the Union option included in the Query Editor. Unlike a Join which creates one record with multiple columns from the two queries, the Union appends the results of one query to the results of the second query so the number of records is the sum of the two queries. This topic introduces how you can create and manage union queries.

This topic contains the following sections:

Creating Union Queries

When creating union queries, you must match each column of the first query to the second query with the same number of columns, the same SQL types, and the same sequence of columns. The names do not need to match. A common usage is to build a mashed-up query that combines a query from one instance of a database to a second instance of the database. For example, you want all the records for table Customers from one database appended to all the records from table Customers from a second database. The two Customers tables must match exactly the number of columns, the SQL type, and sequence.

To create a union query:

  1. In the Catalog Manager, right-click a query (here we call it the primary query) and select Edit Query.
  2. In the Query Editor dialog box, select Menu > Query > Union > New.
  3. In the Enter Query Name dialog box, specify a name for the query and select OK.
  4. Designer displays a new Query Editor dialog box. Create the query as required.

Note icon

  • When creating a union query, the selecting order should refer to the order in the primary query. The SQL type and the number of the selected columns should match those in the primary query. For example, if you select two columns in the primary query, the first one is of the Integer data type, and the second one is of String type. Then, in the union query, you should also first select an Integer column, and then a String type column.
  • A union query cannot support formulas and parameters.

Managing Union Queries

You can manage the union queries you have created.

  1. In the Catalog Manager, right-click the primary query and select Edit Query.
  2. In the Query Editor dialog box, select Menu > Query > Union > Select. Designer displays the Union dialog box.

    Union dialog box

  3. To add a union to the query, select a union in the Queries box and select Add Add button; to remove a union from the query, select it in the Union box, and then select Remove Remove button.
  4. In the Union box, select the Attribute column to specify the type of the union.
    • No Duplicate Records button: Select it if you want to returns no duplicate records.
    • All Records button: Select it if you want to return all records.
  5. Select OK to confirm the changes.

Back to top

BackPrevious Topic  Next TopicNext