Using Interactive SQL to display data

You can use Interactive SQL to browse the information in databases. This section shows how to query the information in the demo database.

You can display database information using a SELECT statement in Interactive SQL. The following example shows the command to type in the SQL Statements pane. Once you have typed the command, click the Execute All SQL Statement(s) button on the toolbar to carry out the command.

After you execute the statement, the data (called a result set) appears in the Results pane. You can use the scroll bars to see areas of the table that are outside your current view of the pane.

StepsListing the columns and rows in the Employees table:

  1. Start Interactive SQL and connect to the demo database.

  2. In the SQL Statements pane, enter:

    SELECT *
    FROM Employees
    
  3. Select Execute SQL Statement from the toolbar.

EmployeeID

ManagerID

Surname

GivenName

...

102

501

Whitney

Fran

...

105

501

Cobb

Matthew

...

129

902

Chin

Philip

...

148

1293

Jordan

Julie

...

160

501

Breault

Robert

...

...

For more information on SELECT statements, see Chapter 1, “Selecting Data from Database Tables” in the Performance and Tuning Guide.