Create a Table Interactively in Oracle

Q

How To Create a Table Interactively in Oracle?

✍: FYIcenter.com

A

If you don't want to use SQL statements to create a new table, you use SQL Developer to create one interactively. Follow the steps below to create a new table called: TIP

  • Right-click on the Tables in the object tree area.
  • Select Create TABLE. Create Table window shows up.
  • Enter Name as: TIP
  • Enter Column Name as: ID, for column 1.
  • Select Type as: INTEGER, for column 1.
  • Click Primary as: Checked, for column 1.
  • Click Add Column to add column 2.
  • Enter Column Name as: SUBJECT, for column 2.
  • Select Type as: VARCHAR2, for column 2.
  • Select Size as: 80, for column 2.
  • Click OK.

 

Enter a New Row Interactively in Oracle

Retrieve CREATE TABLE Statement with SQL Developer in Oracle

Introduction to Oracle SQL Developer

⇑⇑ Oracle Database Tutorials

2018-10-08, 1461🔥, 0💬