Running a Sample Query

Run a sample query against the demo database.

  1. On the Administration Console , click the drop-down arrow next to <localhost>_iqdemo, choose Execute SQL.
  2. In the SQL Statements window, enter:
    SELECT
    SalesOrders.ID,
    SalesOrders.OrderDate,
    Customers.CompanyName
    
    FROM SalesOrders 
    KEY JOIN Customers
    WHERE OrderDate > '1994/01/01'
    ORDER BY OrderDate
  3. Click Execute to run the query.
  4. Click Close.