Rahul Kumar Saurabh

sql program to create table


OBJECTIVE:-  Program to create table.

SOFTWARE USED:  Oracle SQL

THEORY:-
CREATE:- It is a DDL command.
It is used to create table in SQL.

SOURCE CODE ( IF INCLUDED )
Create table table_name
(
Attribute _name1   Data_type (Size),
Attribute _name2   Data_type (Size),
……….
Attribute _name n  Data_type(Size)
);

PROCEDURE



RESULT:-


CONCLUSION:-
We learned about writing the program to create table.