Friday, December 4, 2009

Referencing Another User’s Tables

  • Tables belonging to other users are not in the user’s schema.
  • You should use the schema name as a prefix to those tables.

Thursday, December 3, 2009

CREATE TABLE Statement

You must have:
  • storage area
CREATE TABLE [schema.]table (column datatype [DEFAULT expr][, ...]);

You specify:
  • Table name
  • Column name, column data type, and column size

Followers