{"id":25221602,"url":"https://github.com/theanujsinha01/mysql","last_synced_at":"2026-04-28T13:32:48.433Z","repository":{"id":276299581,"uuid":"928858195","full_name":"theanujsinha01/MySQL","owner":"theanujsinha01","description":"MySQL is a database system used to store and manage data in a structured way. It uses SQL (Structured Query Language) to interact with data.","archived":false,"fork":false,"pushed_at":"2025-03-05T11:22:44.000Z","size":436,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T12:26:35.850Z","etag":null,"topics":["database","dbms","mysql","table"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/theanujsinha01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-02-07T11:14:09.000Z","updated_at":"2025-03-05T11:22:47.000Z","dependencies_parsed_at":"2025-03-05T12:32:51.867Z","dependency_job_id":null,"html_url":"https://github.com/theanujsinha01/MySQL","commit_stats":null,"previous_names":["theanujsinha01/mysql"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theanujsinha01%2FMySQL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theanujsinha01%2FMySQL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theanujsinha01%2FMySQL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theanujsinha01%2FMySQL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theanujsinha01","download_url":"https://codeload.github.com/theanujsinha01/MySQL/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247332612,"owners_count":20921854,"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":["database","dbms","mysql","table"],"created_at":"2025-02-10T22:52:52.371Z","updated_at":"2026-04-28T13:32:43.409Z","avatar_url":"https://github.com/theanujsinha01.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# MySQL\n\n\n## 📌 Introduction\nThis repository contains basic MySQL commands and queries to help beginners understand how to work with MySQL databases.\n\n## 📂 Table of Contents\n- [Installation](#installation)\n- [Basic Commands](#basic-commands)\n- [Creating a Database](#creating-a-database)\n- [Creating a Table](#creating-a-table)\n- [Inserting Data](#inserting-data)\n- [Fetching Data](#fetching-data)\n- [Updating Data](#updating-data)\n- [Deleting Data](#deleting-data)\n\n## 🛠 Installation\n1. Download and install [MySQL](https://dev.mysql.com/downloads/).\n2. Open MySQL command line or any GUI tool (like MySQL Workbench).\n\n## 🔹 Basic Commands\n```sql\nSHOW DATABASES; -- Show all databases\nUSE mydb; -- Select a database\nSHOW TABLES; -- Show tables in selected database\n```\n\n## 📌 Creating a Database\n```sql\nCREATE DATABASE mydb;\n```\n\n## 📌 Creating a Table\n```sql\nCREATE TABLE users (\n    id INT AUTO_INCREMENT PRIMARY KEY,\n    name VARCHAR(50),\n    age INT\n);\n```\n\n## 📌 Inserting Data\n```sql\nINSERT INTO users (name, age) VALUES ('Anuj', 22);\n```\n\n## 📌 Fetching Data\n```sql\nSELECT * FROM users;\n```\n\n## 📌 Updating Data\n```sql\nUPDATE users SET age = 23 WHERE name = 'Anuj';\n```\n\n## 📌 Deleting Data\n```sql\nDELETE FROM users WHERE name = 'Anuj';\n```\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheanujsinha01%2Fmysql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheanujsinha01%2Fmysql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheanujsinha01%2Fmysql/lists"}