Listing all the columns and rows of the employee table

To list the data stored within database tables, type a SELECT command in the Interactive SQL Classic (dbisqlc) command window, then press F9 (if supported), or Command | Execute from the menu to carry out the command. The example output that follows shows the first several columns and rows of the results of the query which appear in the Interactive SQL Classic data window.

Enter:

SELECT *
FROM Employees

EmployeeID

ManagerID

Surname

GivenName

...

102

501

Whitney

Fran

...

105

501

Cobb

Matthew

...

129

902

Chin

Philip

...

148

1293

Jordan

Julie

...

160

501

Breault

Robert

...

...

Notes