Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarmad426/mysql-database
https://github.com/sarmad426/mysql-database
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sarmad426/mysql-database
- Owner: Sarmad426
- Created: 2024-04-01T00:45:47.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-18T06:38:46.000Z (6 months ago)
- Last Synced: 2024-05-18T07:31:59.263Z (6 months ago)
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Database
Database is a way to store data in tabular format. It is efficient and flexible. It ensures that there is no **redundancy** in the data. There are particularly two types of databases.
- Relational Databases (SQLite,MYSQL, PostgreSQL)
- Object Databases (Mongodb)## Relational Databases
In Relational database data is stored in the form of tables, where each row is called a **record** and a column is called a **Field**.
## SQL
SQL stands for **Structured Query Language**. It is a powerful relational database query language. It is not a Case Sensitive Language.
## File Processing System vs Database Systems
In file processing system data is stored in files. Data is interdependent. Which means change in one place cause a change in another place. Hence data is not secure.
## Database Systems
Data in database systems is independent.
**Advantages of Database:**
- Data Sharing
- Data Independence
- Controlled Redundancy
- Better data integrity (valid data)**This Repository covers MYSQL database.**