Creates a new database.
Example: Creates a new database named ‘websitesetup’.CREATEDATABASE websitesetup;
Posted by: Guest
on January-07-2021
0
create a db
#TO Create a DB :CREATEDATABASE<DB_NAME>;
#example : CREATE DATABASE MyDataBase ;#To Create a Table :CREATETABLE<TB_NAME>(
<Elem 0><Type_of_Elem created><ADD_PROPRETIES>, #Don't forget the comma.........<Elem n><Type_of_Elem created>#last elems don't need a comma
);
/*example :
CREATE TABLE city (
id int NOT NULL IDENTITY(1, 1),
city_name char(128) NOT NULL,
lat decimal(9,6) NOT NULL,
long decimal(9,6) NOT NULL,
country_id int NOT NULL,
CONSTRAINT city_pk PRIMARY KEY (id)
);
*/
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email