Skip to content

Latest commit

 

History

History
89 lines (71 loc) · 1.99 KB

File metadata and controls

89 lines (71 loc) · 1.99 KB

🤝 Contributing to SQL Queries and DBMS

Thank you for your interest in contributing! 🎉
We welcome contributions that improve this repository and help others learn DBMS and SQL more effectively.


📌 How to Contribute

1️⃣ Fork the Repository

Click on the Fork button at the top right of this repo.


2️⃣ Clone Your Fork

git clone https://github.com/your-username/sql-queries-and-dbms.git
cd sql-queries-and-dbms

4️⃣ Make Your Changes

You can contribute in the following ways:

➕ Add new SQL queries 🧠 Improve DBMS notes 🐛 Fix errors or bugs ✨ Add explanations or comments 📁 Organize files better

5️⃣ Follow Project Structure

Please maintain the structure:

basics/
queries/
advanced/
notes/

6️⃣ Commit Your Changes git add . git commit -m "Added: description of your changes" 7️⃣ Push to GitHub git push origin feature/your-feature-name 8️⃣ Create a Pull Request Go to your forked repo Click Compare & Pull Request Add a proper description Submit PR 🚀

📝 Contribution Guidelines
✅ Write clean and readable SQL code
✅ Add comments to explain queries
✅ Use meaningful file names
✅ Follow proper folder structure
❌ Avoid duplicate content
❌ Do not upload unnecessary files

📚 Example Contribution -- File: queries/joins.sql

-- INNER JOIN Example

SELECT students.name, courses.course_name
FROM students
INNER JOIN courses
ON students.id = courses.student_id;

🧑‍💻 Code Style Use uppercase for SQL keywords (SELECT, WHERE) Use indentation for readability Add comments using -- 💡 Suggestions

If you have ideas to improve this repo, feel free to open an issue.

🙌 Thank You!

Your contributions help make this project better for everyone 💙 Happy coding! 🚀


If you want to make your repo even more professional (like top GitHub projects), I can also add:

  • 🔥 CODE_OF_CONDUCT.md
  • 🏷️ Issue & PR templates
  • ⭐ GitHub badges (stars, forks, contributors)

Just tell me 👍