DBMS
DBMS
SQLite is a relational database management system contained in a C library. In contrast to many other database
management systems, SQLite is not a client–server database engine. Rather, it is embedded into the end
program. SQLite generally follows PostgreSQL syntax.
3. Create a database with the schema given at the end of this document
Created the Database with the name Project.db with the following tables
1) Employee
2) Department
3) Dependent
4) Dept_Locations
5) Project
6) Works_On
‘
4. Populate these tables of this schema with sample data
5. Write & execute SQL statements to obtain the following information from the database
Section 4
1. Increase salary of employees working in ‘HR’ department by 10%
2. Delete project whose project number = 12345
Database schema