{"id":26353357,"url":"https://github.com/haroontrailblazer/database-management","last_synced_at":"2025-03-16T11:18:01.859Z","repository":{"id":270177133,"uuid":"909553989","full_name":"haroontrailblazer/Database-Management","owner":"haroontrailblazer","description":"This repository showcases database management with SQL and MongoDB through examples, scripts, and projects. Ideal for learning and applying database concepts efficiently.","archived":false,"fork":false,"pushed_at":"2025-03-07T16:07:04.000Z","size":5391,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-07T16:37:20.324Z","etag":null,"topics":["mongodb","sql"],"latest_commit_sha":null,"homepage":"","language":"TSQL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/haroontrailblazer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-29T04:00:45.000Z","updated_at":"2025-03-07T16:07:07.000Z","dependencies_parsed_at":"2024-12-29T07:08:27.681Z","dependency_job_id":null,"html_url":"https://github.com/haroontrailblazer/Database-Management","commit_stats":null,"previous_names":["haroontrailblazer/database-management"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haroontrailblazer%2FDatabase-Management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haroontrailblazer%2FDatabase-Management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haroontrailblazer%2FDatabase-Management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haroontrailblazer%2FDatabase-Management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/haroontrailblazer","download_url":"https://codeload.github.com/haroontrailblazer/Database-Management/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243858059,"owners_count":20359269,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mongodb","sql"],"created_at":"2025-03-16T11:18:01.376Z","updated_at":"2025-03-16T11:18:01.840Z","avatar_url":"https://github.com/haroontrailblazer.png","language":"TSQL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Database Management\n![Screenshot 2024-12-29 164720](https://github.com/user-attachments/assets/aa113ade-4216-4e02-9511-b20070d7961c)\n![WhatsApp Image 2024-12-29 at 16 54 14_bd0de668](https://github.com/user-attachments/assets/ec935361-056f-4472-a4c7-3f44874e98ce)\n\n\n\n\n\n## 🚀 Overview\nWelcome to the **Database Management** repository! This project is all about mastering the art of database management using two powerful tools: **SQL** and **MongoDB**. Whether you are a beginner or looking to refine your skills, this repository offers valuable resources and examples to guide you through the concepts and practical applications.\n\n## 🛠 Technologies Used\n- **SQL**: The standard language for relational database management, enabling you to query and manipulate data with ease.\n- **MongoDB**: A leading NoSQL database that stores data in flexible, JSON-like documents, ideal for handling unstructured data.\n\n## 📂 Contents\n- `sql/`: Contains SQL scripts and examples.\n- `mongodb/`: Contains MongoDB scripts and examples.\n- `README.md`: Project overview and instructions.\n\n## 📚 What You’ll Learn\n1. **SQL Basics**: Data retrieval, manipulation, and management.\n2. **Advanced SQL Queries**: Complex joins, subqueries, and transactions.\n3. **MongoDB Basics**: Document-oriented data storage and CRUD operations.\n4. **Advanced MongoDB**: Aggregation, indexing, and performance optimization.\n5. **Practical Projects**: Hands-on projects to apply your database management skills.\n\n## 🔧 Getting Started\n### Prerequisites\n- Ensure you have SQL and MongoDB installed on your system.\n\n### Installation\nClone this repository to your local machine:\ngit clone https://github.com/haroontrailblazer/Database-Management.git\ncd Database-Management\n--\nUsage\nNavigate to the respective directories (sql/ or mongodb/) and follow the instructions in the scripts to set up and run the examples.\n\n🤝 Contributions\nContributions are welcome! Feel free to fork this repository, add your improvements, and submit a pull request.\n\n📬 Contact\nFor any questions or suggestions, feel free to reach out:\n\nEmail: haroonint144@gmail.com\n\nGitHub: @haroontrailblazer\n\n📜 License\nThis project is licensed under the MIT License. See the LICENSE file for details.\n# SQL Keyword Case Sensitivity\n\n## Overview\n\nIn different SQL query language implementations, there might be variations in how they handle case sensitivity for keywords. For example, in MySQL Workbench or shell, keywords such as `DESCRIBE`, `USE`, `CREATE`, `ALTER`, etc., are accepted in both capital and small letters. However, in some SQL shells, these keywords are only accepted when written in capital letters.\n\n## Examples\nSQL Shell (Case Sensitive)\nThese queries must be written in capital letters to be accepted\n\nDESCRIBE table_name;\nUSE database_name;\nCREATE TABLE example (id INT);\n\nConclusion:\nWhen working with different SQL shells,\nbe mindful of their case sensitivity rules\nfor SQL keywords to avoid syntax errors.\n\n### MySQL Workbench/Shell\n```sql\n-- Both of these queries are valid in MySQL Workbench/Shell\n\nDESCRIBE table_name;\ndescribe table_name;\n\nUSE database_name;\nuse database_name;\n\nCREATE TABLE example (id INT);\ncreate table example (id int);\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fharoontrailblazer%2Fdatabase-management","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fharoontrailblazer%2Fdatabase-management","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fharoontrailblazer%2Fdatabase-management/lists"}