0% found this document useful (0 votes)
14 views2 pages

SYNTAXES

Gud sih didi cycle coho dp dugo chp

Uploaded by

faltunews07
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views2 pages

SYNTAXES

Gud sih didi cycle coho dp dugo chp

Uploaded by

faltunews07
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

SYNTAXES

TO SEE DATABASES
Show databases;
TO CREATE DATABASE
Create database database_name;
TO USE DATABASE
Use database_name;
TO SEE TABLES IN SELECTED DATABASE
Show tables;
TO CREATE TABLE
Create table table_name(
Column1 datatype,
Column2 datatype,
Column3 datatype,
.
.
.
Key_name (column_name));
TO SEE STRUCTURE OF TABLE
Desc table_name;
TO ALTER TABLE
Adding primary key
Alter table table_name add primary key(column_name);
Adding foreign key
Alter table table_name add foreign key (column_name) references
table_name2(same_column_name);
Adding unique constraint
Alter table table_name
Add unique(column_name);
Adding attribute, i.e., column
Alter table table_name
Add column_name datatype
Modifying attribute
Alter table table_name
Modify column _name datatype;
Modifying constraints
Alter table table_name
Modify column_name datatype not null;
Adding default value to attribute
Alter table table_name
Modify column datatype default put_value;
Removing attribute
Alter table table_name drop column_name;
DROPING TABLE
Drop table table_name;
DROPPING DATABASE
Drop database database_name;

You might also like