Contents Index Working with tables Altering tables

ASA SQL User's Guide
  Working with Database Objects
    Working with tables

Creating tables


When a database is first created, the only tables in the database are the system tables, which hold the database schema. You can then create new tables to hold your actual data, either with SQL statements in Interactive SQL or with Sybase Central.

There are two types of tables that you can create:

Tables consist of rows and columns. Each column carries a particular kind of information, such as a phone number or a name, while each row specifies a particular entry.

To create a table (Sybase Central)

  1. Connect to the database.

  2. Open the Tables folder.

  3. From the File menu, choose New > Table.

    The Table Creation wizard appears.

  4. In the Table Creation wizard:

  5. Click Finish.

  6. On the Columns tab in the right pane, you can add columns to the table.

  7. Choose File > Save when finished.

To create a table (SQL)

  1. Connect to the database with DBA authority.

  2. Execute a CREATE TABLE statement.

Example 

The following statement creates a new table to describe qualifications of employees within a company. The table has columns to hold an identifying number, a name, and a type (technical or administrative) for each skill.

CREATE TABLE skill (
   skill_id INTEGER NOT NULL,
   skill_name CHAR( 20 ) NOT NULL,
   skill_type CHAR( 20 ) NOT NULL
)

For more information, see CREATE TABLE statement.


Contents Index Working with tables Altering tables