dbms2 1
dbms2 1
HIMACHAL PRADESH
(An Institute of National Importance under MoE)
Saloh, Una, Himachal Pradesh - 177209
ITC404
Database Management System
ITC40422305
INDEX
Practical Title Page Date Remarks
No. No.
1. Introduction to database 3-20 10.01.24
1.1. To learn the installation and setup of pgAdmin4 3-9 10.01.24
1.2. To learn the creation of databases and tables. 10-13 12.01.24
1.3. To learn the implementation of SQL query using 14-20 17.01.24
INSERT
2. 21 19.01.24
2.1 To learn the implementation of SQL query
using SELECT.
2.2
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
ITC40422305
PRACTICAL 2
Basic Operations in PostgreSQL
Date:19/01/2024
Output:
2.
Input code:
SELECT (section_identifier,course_number)
FROM section
ITC40422305
Output:
3.
Input Code:
SELECT (section_identifier,course_number,year)
FROM section
Output:
4.Input Code:
ITC40422305
SELECT (student_number,section_identifier,grade)
FROM grade_report
Output:
5.
Input Code:
SELECT (name,class)
FROM student
Output:
ITC40422305
6.Input Code:
SELECT(semester,instructor)
FROM section
Output:
7.
Input Code:
SELECT(credit_hours,department)
FROM course
Output:
8.Input Code:
SELECT(course_number,prerequisite_number)
FROM prerequisite
Output:
ITC40422305
Input code:
SELECT(student_number,class)
FROM student
Output:
Input code:
SELECT(student_number,grade)
FROM grade_report
ITC40422305
Output:
ITC40422305