Create a data base in SQL:
Create a new data base in SQL is not a hard work it is a very easy.Create a new data and many files used to store data base from the detached file.
Syntex:
create database database_name;
Example:
may be data base name is my_database.and this is example through that
create database my_database;
but table syntex is diffrent is given bellow.
Syntex for table:
create table table_name
(
column name1 type;
column name2 type;
................................
)
0 comments:
Post a Comment