DB Cruiser -- Table Work Area -- Table Column Definitions:
 
(see below for explanation)
 
Explanation:
 
By clicking a table name on the last screen, a new window pops up, and the column definition of the table displayed. This gives you the ability to view multiple tables at the same time. You can go back to the main menu any time by clicking Main Window button.

For example, if we click EMPLOYEES table on the table list of the schema HR, a new window pops up, and the column definitions of EMPLOYEES table displayed. It also display other function buttons, like Primary Keys, Foreign Keys, Data Definition Language (DDL) Table Indexes, Table Row Count, Table Privileges, Query Builder, Insert a New Row, JavaBean, Entity Bean, Main Menu, etc. All meaning of those buttons are self-explained. We will talk each button in the following text.

There are check boxes and radio buttons on each side of the column definitions, which allow you to do some simple query to the table. You may use check boxes to select the columns you want to view, and use a radio button to sort the result according to the column.

Basically, you can do the simple query like "SELECT column_A1, column_A2, … column_An FROM table ORDER BY column_B" graphically without typing a single character. For more complicated queries, you need to use Query Builder, or SQL Work Area.

Furthermore, you may build more complicated SELECT statements by adding conditions and logic, see here for details.

There are 11 columns of EMPLOYEES table. We want to view EMPLOYEE_ID, FIRST_NAME, LAST_NAME, EMAIL, PHONE_NUMBER, HIRE_DATE, JOB_ID, SALARY, MANAGER_ID columns, so checked those columns, see the screen above. We then click View Selected Columns button. See next screen for the query result.