You are on page 1of 11

Experiment Title- 1.

Student Name: ANIKET KUMAR UID:21BCS10117


Branch: BE-CSE Section/Group:21BCS-906(B)
Semester: 3 Date of Performance:
Subject Name: DBMS Subject Code:

Aim/Overview of the practical: To perform SQL commands

REQUIREMENT: ORACLE DBMS SOFTWARE

DDL (DATA DEFINATION LANGUAGE)


Create Command
Use CREATE statement to create a table

create table table_name (field_name datatype); (syntax)

RESULT
Describe Command
Desc table name;(syntax)

SQL DESC Statement (Describe Table) SQL DESC statement use for describe the list of
column definitions for specified table. You can use either DESC or DESCRIBE statement. both
are return same result.

RESULT
Alter Command (ADD)
alter table table_name add (field name datatype); (syntax)

The ALTER command in SQL is used to make changes to a table, view, or the entire
database. We can add, modify, and drop constraints, columns, and indexes

RESULT
Alter Command (MODIFY)
alter table table_name modify(field_name datatype)

RENAME COMMAND
Alter table student rename column old_field to new_field

RESULT

Drop Command
drop table table_name;(syntax)

The drop command in SQL is used to remove the whole table including data present inside it,
indexes, triggers, constraints, and permission specifications for that particular table

RESULT
Truncate Command
truncate table table_name;

this statement delete all rows from a table without deleting the structure of Table
DML (DATA MANIPULATION LANGUAGE)
INSERT Command
INSERT INTO table1 (column1, column2) SELECT column1, column2 FROM table2
WHERE condition1;);(syntax)

You can use the INSERT statement to query data from one or more tables and insert it into
another table

Select Command(*)
Select * from table_name; (syntax)

. The SELECT Statement in SQL is used to retrieve or fetch data from a database. We can fetch
either the entire table or according to some specified rules

RESULT
SELECT COMMAND (FIELD_Name)
Select field1_name,field3_name from table_name;

RESULT
Update Command
update table_name set field_name=value where field_name_2=value;

The UPDATE command for SQL is used to modify the existing data in a SQL table.

RESULT

Delete Command
delete from table_name where field_name=value;

RESULT
Learning outcomes (What I have learnt):

1.

2.

3.

4.

5.
Evaluation Grid :

Sr. No. Parameters Marks Obtained Maximum Marks


1. Student Performance 12
(Conduct of experiment)
objectives/Outcomes.
2. Viva Voce 10
3. Submission of Work Sheet 8
(Record)
Total 30

You might also like