Tell Me
 

Creating Tables

Previous previous|next Next Page

You create tables with the SQL CREATE TABLE statement. With Oracle Database XE, you have two options for creating tables.

  • Use the graphical interface that generates the SQL statement
  • Enter the CREATE TABLE statement in the SQL Workshop tool
When creating tables, you must provide:
  • Table name
  • Column name(s)
  • Data types for each column
Guidelines for creating tables:
  • Table and column naming rules
  • Most common data types

You can also set up constraints on your columns to control the data in them.