Monday, October 22, 2012

How TO Create Tables

Here is the format of a simple create table statement:


create table "tablename" ("column1" "data type", "column2" "data type",
 "column3" "data type");

Example:

1. create table "student" ("Name" "varchar(15)", "Class" "varchar(10)", "Roll No" "number(5)")

No comments:

Post a Comment