https://github.com/raadiah/art-store-database
This is an art store database management for a typical store which sells art supplies. The system is made with Oracle-11g DBMS. It includes trigger, loop, PL-SQL, procedure and functions.
https://github.com/raadiah/art-store-database
dbms-project functions loop oracle-11g pl-sql procedure trigger
Last synced: 12 months ago
JSON representation
This is an art store database management for a typical store which sells art supplies. The system is made with Oracle-11g DBMS. It includes trigger, loop, PL-SQL, procedure and functions.
- Host: GitHub
- URL: https://github.com/raadiah/art-store-database
- Owner: Raadiah
- Created: 2019-09-30T15:21:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-13T13:34:57.000Z (over 5 years ago)
- Last Synced: 2025-01-13T06:26:49.561Z (about 1 year ago)
- Topics: dbms-project, functions, loop, oracle-11g, pl-sql, procedure, trigger
- Language: TSQL
- Homepage:
- Size: 10.7 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: change_quantity.sql
Awesome Lists containing this project
README
# Art-Store-Database
This is an art store database management for a typical store which sells art supplies. The system is made with **Oracle 11g DBMS**. The database is made of five tables:
* **Suppliers** : Consists of information about the suppliers who give the art supplies to the store
* **Products** : The products information, brought from the suppliers, are stored here
* **Customer** : The customers who bought supplies from the store
* **C_order** : This is a relation between customer and products when a order is placed
* **Shipping** : Information about how orders are shipped to the customers. Every day, all the orders that are placed by a single customer, is shipped. If orders are placed on different days, they are shipped on different track.
The code for creating the tables are [here](https://github.com/Radhima/Art-Store-Database/blob/master/table_structure.sql).
Demo values are inserted in the table in [here](https://github.com/Radhima/Art-Store-Database/blob/master/insert.sql).
**Another version of the design using PostgreSQL can be found [here](https://github.com/Radhima/PostgreSQL) with documentation.**