next up previous contents
Next: Creating and Querying a Up: Oracle Basics Previous: Create an index   Contents

Query the table

Grabbing data from the table is trivial using standard SQL.
SQL> select name from address_book;

NAME
------------------------------
Ben Rockwood
Tamarah Rockwood
Nova Rockwood

SQL>


2005-02-10