{"id":23666733,"url":"https://github.com/theshubhamgour/sql_in_one","last_synced_at":"2026-04-29T10:34:41.324Z","repository":{"id":153420703,"uuid":"477698031","full_name":"theshubhamgour/SQL_in_one","owner":"theshubhamgour","description":"In this repository we are going to learn about SQL in refernce to the youtube channel shubham gour","archived":false,"fork":false,"pushed_at":"2022-04-05T04:40:23.000Z","size":71,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-12T00:28:55.853Z","etag":null,"topics":["database","dbms","mysql"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/theshubhamgour.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":"2022-04-04T12:48:40.000Z","updated_at":"2022-04-05T02:20:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"c064193e-29ff-408d-ac30-4d8e7d9efcfa","html_url":"https://github.com/theshubhamgour/SQL_in_one","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/theshubhamgour/SQL_in_one","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theshubhamgour%2FSQL_in_one","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theshubhamgour%2FSQL_in_one/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theshubhamgour%2FSQL_in_one/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theshubhamgour%2FSQL_in_one/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theshubhamgour","download_url":"https://codeload.github.com/theshubhamgour/SQL_in_one/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theshubhamgour%2FSQL_in_one/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32422086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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"],"created_at":"2024-12-29T07:34:56.675Z","updated_at":"2026-04-29T10:34:41.275Z","avatar_url":"https://github.com/theshubhamgour.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# SQL_in_one\n# What is DataBase?\n-\u003e A database is a software that storers data in organized manner.\nA database is an organized collection of structured information, or data, typically stored electronically in a computer system.\nComputer databases typically store aggregations of data records or files that contain information, such as sales transactions, customer data, financials and product information.\n\n![](https://i0.wp.com/ubiq.co/database-blog/wp-content/uploads/2020/10/enable-mysql-replication.png?resize=730%2C410\u0026ssl=1)\n\n# What is MySQL?\n-\u003e MySQL is a DataBase Software used to handle data in relational manner.\n\n\nRelational manner: follows a pattern (In the form of tables) we can connect tables in relational database.\n\n![](https://www.pragimtech.com/blog/contribute/article_images/2220211210231003/what-is-a-relational-database.jpg)\n\n Data can be accesed by queires. it works on theprinciple of request and get\n![](https://programmer.group/images/article/4afb276e564fd636f0486cd37abeed48.jpg)\n\n# Download MySQL\nDownload MySQL Software: https://dev.mysql.com/downloads/mysql/\n\n# Database Operations\n1. Show databases : used to view databases which arre present in the database server\n ```show databases; ```\n \n2. To create a database : create database [database_name]\n```create database employee```\n\n3. To use/select a particular database : use [database_name]\n```use employee```\n\n4. To delete a database we make use of drop : drop database [database_name]\n```drop database employee```\n\n# Table operations\n5. To create a table we have to make note of two things first create a ```table``` and ```columns```\ncreate table [table_name] (col 1,col 2,col 3,col 4 ,....)\n\n```create table user(id int(15) primary key, name varchar(150) not null, city varchar(150));```\n\n# Primary key:  \nA primary key is the column or columns that contain values that uniquely identify each row in a table\nI used primary to key to make it unique to identify the user as an unique entry\n\n6. Suoppose you forgot what was the column name and the property of the table thn you can make use of desc for describing the table. desc [table_name]; \n ```desc user;```\n```\n+-------+--------------+------+-----+---------+-------+\n| Field | Type         | Null | Key | Default | Extra |\n+-------+--------------+------+-----+---------+-------+\n| id    | int          | NO   | PRI | NULL    |       |\n| name  | varchar(150) | NO   |     | NULL    |       |\n| city  | varchar(150) | YES  |     | NULL    |       |\n+-------+--------------+------+-----+---------+-------+\n```\n\n7. Type ```show tables;``` to view the table that you've created\n```\n+--------------------+\n| Tables_in_employee |\n+--------------------+\n| user               |\n+--------------------+\n```\n8. To drop a table just like the database we have drop earlier we make use of:  drop table [table_name] and the table will get deleted.\n```drop table user;```\n\n9. To Rename a table name we make use of alter: alter table [old_name] rename to [new_name];\n ```alter table user rename to student;```\n \n check the table name ```show tables```;\n \n 10. To delete all the records of the table we make use of truncate command.\n NOTE: ONLY THE DATA IN THE  TABLE WILL GET DELETED NOT THE TABLE!\n ```truncate table student;```\n \n 11. To feed data into table we makw use of ```insert into``` command: insert into [table_name](id,name,city) values(id(in int),name(in char),city(in char));\n ```insert into student(id,name,city) values(15,\"Aditya Jain\",\"Nagpur\");```\n \n 12. In order to check the entry we just made we makw use of : select * from [table_name];\n ```select * from student;```\n ```\n +----+-------------+--------+\n| id | name        | city   |\n+----+-------------+--------+\n| 15 | Aditya Jain | Nagpur |\n+----+-------------+--------+\n```\n13. To add a column in table: alter table [table_name] add [col_name];\n```alter table student add country varchar(50);```\n\n14. To update entry we make use of : update [table_name] set [col_name] = \"Value\";\nNOTE: IF YOU RUN THIS COMMAND ```update student set country = \"India\";``` ENTIRE COLUMN OF COUNTRY WILL TURN INTO INDIA.\n\nType: ``` select * from student; ``` to check the entry\n```\n+----+-------------+--------+---------+\n| id | name        | city   | country |\n+----+-------------+--------+---------+\n| 15 | Aditya Jain | Nagpur | India   |\n+----+-------------+--------+---------+\n```\n\n15. Lets add more data in the table: \n```\n insert into student(id,name,city) values(10, \"Shubham\",\"Nagpur\");\n ```\n 16. In Order to add data to a specifiic id we make use of where:\n \n``` update student set country= \"India\" where id = 10;\n    update student set country= \"Saudi Arab\" where id = 15;\n```\n\nType ```select * from student```\n```\n+----+-------------+--------+------------+\n| id | name        | city   | country    |\n+----+-------------+--------+------------+\n| 10 | Shubham     | Nagpur | India      |\n| 15 | Aditya Jain | Nagpur | Saudi Arab |\n+----+-------------+--------+------------+\n```\n\n17. For inserting multiple valuies at once: \n```\ninsert into student values (1,\"Pradhynesh\",\"Bhandara\",\"Delhi\"),\n                           (2,\"Shubham Bedarkar\",\"Amravati\",\"MP\"),\n                           (3,\"Neha\",\"Berlin\",\"Germany\"),  \n                           (4,\"Sayali\",\"Mathura\",\"India\");\n```\n\ntype: ```select * from student;``` to check the entry we made just now to ensure everything is going properly.\n```\n\n+----+------------------+----------+------------+\n| id | name             | city     | country    |\n+----+------------------+----------+------------+\n|  1 | Pradhynesh       | Bhandara | Delhi      |\n|  2 | Shubham Bedarkar | Amravati | MP         |\n|  3 | Neha             | Berlin   | Germany    |\n|  4 | Sayali           | Mathura  | India      |\n| 10 | Shubham          | Nagpur   | India      |\n| 15 | Aditya Jain      | Nagpur   | Saudi Arab |\n+----+------------------+----------+------------+\n\n```\n18. To delete the data from the table for a specific user: delete from [table_name] where [col_name]=[value]\n\n```\ndelete from student where id=15;\n```\n\n# Clauses\nFor  sorting dat we makew use opf clauses\n19. where: \n```select * from student where city = \"Nagpur\";```\n```\n+----+---------+--------+---------+\n| id | name    | city   | country |\n+----+---------+--------+---------+\n| 10 | Shubham | Nagpur | India   |\n+----+---------+--------+---------+\n```\nMethod 2: to sort it with just a particular information we make use of below command:\n```\n select name,city,country from student where country =\"india\";\n```\n```\n+---------+---------+---------+\n| name    | city    | country |\n+---------+---------+---------+\n| Sayali  | Mathura | India   |\n| Shubham | Nagpur  | India   |\n+---------+---------+---------+\n```\n20: Alias : Used to changw the name temporary\n```\nselect name as \"USERNAME\" , country as \"HOMELAND\" from student;\n```\n```\n+------------------+----------+\n| USERNAME         | HOMELAND |\n+------------------+----------+\n| Pradhynesh       | Delhi    |\n| Shubham Bedarkar | MP       |\n| Neha             | Germany  |\n| Sayali           | India    |\n| Shubham          | India    |\n+------------------+----------+\n```\n21: Distinct : Do not repeat same values again and again\n```\nselect distinct (country) from student;\n```\nAbove and below command will give same output\n```\nselect distinct country from student;\n```\n```\n+---------+\n| country |\n+---------+\n| Delhi   |\n| MP      |\n| Germany |\n| India   |\n+---------+\n```\n22. AND: if you want to add two conditons at a time\n```\n select * from student where country= \"india\" AND city = \"mathura\";\n```\n```\n+----+--------+---------+---------+\n| id | name   | city    | country |\n+----+--------+---------+---------+\n|  4 | Sayali | Mathura | India   |\n+----+--------+---------+---------+\n```\n23. OR : IF either one of the condition is true we will get the desired result\n```\nselect * from student where country = \"Germany\" OR city = \"Goa\";\n```\nHere only one conditon i.e: city name is matching the records hence we got the below result\n```\n+----+------+--------+---------+\n| id | name | city   | country |\n+----+------+--------+---------+\n|  3 | Neha | Berlin | Germany |\n+----+------+--------+---------+\n```\n\n24. Range: Searching and Sorting (Between)\n\nSuppose you want to sort those people/employee whos id ranges between 1 to 5 then we will make use of the conditions given below.\n ```\n select * from student where id\u003e=1 AND id\u003c=5;\n ```\n ```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  3 | Neha             | Berlin   | Germany |\n|  4 | Sayali           | Mathura  | India   |\n+----+------------------+----------+---------+\n\n```\nNOTE: SAME RESULT CAN BE OBAINED USING THE FOLLOWING COMMAND ```BETWEEN```\n```\nselect * from student where id between 1 and 4;\n```\n```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  3 | Neha             | Berlin   | Germany |\n|  4 | Sayali           | Mathura  | India   |\n+----+------------------+----------+---------+\n```\n\n25. Searching multiple records at the same time: (IN OPERATOR)\nConsider that you want to see those entires whose ids are 2,10 and 3 then we will make use of the below command.\n```\nselect * from student where id = 2 or id = 10 or id  = 3;\n```\n```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  3 | Neha             | Berlin   | Germany |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n```\n\nNOTE: IN THE ABOVE COMMAND WE HAVE TO USE MULTRIPLE OR SO TO OVERCOME THAT WE CAN MAKE USE OF ```IN()```\n\n```\nselect * from student where id in(2,4,10);\n```\n```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  4 | Sayali           | Mathura  | India   |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n```\n26. Limit: Useful to sort Top entries and other operations\nSuppose you want to sort top 4 entries then we make use of limit\n\n```\nselect * from student where id in(2,4,10);\n```\n```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  4 | Sayali           | Mathura  | India   |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n```\n\nNow You want to leave top 2 entries and want to print the remaining top 3 entries after the top tow then we may use ```offset```\n```\n select * from student limit 3 offset 2;\n ```\n Here 3 specifiee the values to be printed in the terminal and 2 specifies that we have to exclude the top 2 entires.\n ```\n+----+---------+---------+---------+\n| id | name    | city    | country |\n+----+---------+---------+---------+\n|  3 | Neha    | Berlin  | Germany |\n|  4 | Sayali  | Mathura | India   |\n| 10 | Shubham | Nagpur  | India   |\n+----+---------+---------+---------+\n```\n\n27: Order by: Ascending and Decending\n\nTo print in Decending order we make use of below command\n```\nselect * from student order by name desc;\n```\n```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  2 | Shubham Bedarkar | Amravati | MP      |\n| 10 | Shubham          | Nagpur   | India   |\n|  4 | Sayali           | Mathura  | India   |\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  3 | Neha             | Berlin   | Germany |\n+----+------------------+----------+---------+\n\n```\nNow if you want to display in ascending manner then make use of below command\n```\nmysql\u003e select * from student order by name asc;\n```\n```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  3 | Neha             | Berlin   | Germany |\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  4 | Sayali           | Mathura  | India   |\n| 10 | Shubham          | Nagpur   | India   |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n+----+------------------+----------+---------+\n\n```\nSame can be done with ID\n\n```\nmysql\u003e select * from student order by id asc;\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  3 | Neha             | Berlin   | Germany |\n|  4 | Sayali           | Mathura  | India   |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n5 rows in set (0.00 sec)\n\nmysql\u003e select * from student order by id desc;\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n| 10 | Shubham          | Nagpur   | India   |\n|  4 | Sayali           | Mathura  | India   |\n|  3 | Neha             | Berlin   | Germany |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n+----+------------------+----------+---------+\n5 rows in set (0.00 sec)\n```\n# Can we use limit and order both at once?\nSuppose we want to display bottom two entires and that too in decending order than we make uske of both limit and order by command\n```\n select * from student order by id desc limit 2;\n ```\n ```\n+----+---------+---------+---------+\n| id | name    | city    | country |\n+----+---------+---------+---------+\n| 10 | Shubham | Nagpur  | India   |\n|  4 | Sayali  | Mathura | India   |\n+----+---------+---------+---------+\n```\n# Can we update the entires??\nSuppose we want to update entry with id number 4 and name it as Aditya then we will use the below command:\n```\n update student set name = \"Aditya Jain\" where id = 4;\n```\n```\nmysql\u003e select * from student;\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  3 | Neha             | Berlin   | Germany |\n|  4 | Aditya Jain      | Mathura  | India   |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n```\nNow you want to update city and country for id numbre 4 ie for Aditya jain then follow below command\n\n```\nupdate student set city =\"Nagpur\" where id = 4;\nupdate student set country =\"India\" where id = 4;\n\n```\n```\nselect * from student;\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  3 | Neha             | Berlin   | Germany |\n|  4 | Aditya Jain      | Nagpur   | India   |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n```\n# Like clause and search pattern\n%  = zero, on one or multiple characters (Used when we don't know how many characters it has)\n_  = represents single character (Used when we know only one character is present after it)\n\nSuppose you want to sort  out all those people whose name starts with s then follow the below command\n```\n select * from student where name like 's%';\n ```\n We used % here because we dont know how many charaters it have.\n ```\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  2 | Shubham Bedarkar | Amravati | MP      |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n```\n\nNow Suppose you want to sort those students whose second letter of the city name is \"a\" then  follow the below command\n\n```\n select * from student where city like '_a%';\n ```\n ```\n+----+-------------+--------+---------+\n| id | name        | city   | country |\n+----+-------------+--------+---------+\n|  4 | Aditya Jain | Nagpur | India   |\n| 10 | Shubham     | Nagpur | India   |\n+----+-------------+--------+---------+\n```\nNow to sprt out a student whose last second letter is \"r\" then follow below command\n```\nselect * from student where city like \"%r_\";\n```\n```\n+----+------------+----------+---------+\n| id | name       | city     | country |\n+----+------------+----------+---------+\n|  1 | Pradhynesh | Bhandara | Delhi   |\n+----+------------+----------+---------+\n```\n# Sum and Alias together\nSuppose you want the sum of all the id's and remane the column id as total then follow the below command\n```\n select sum(id) as \"Total\" from student;\n ```\n ```\n+-------+\n| Total |\n+-------+\n|    20 |\n+-------+\n```\n# Average and Alias together\nSuppose you want the average of all the id's and remane the column id as average then follow the below command\n\n```select avg(id) as \"Average\" from student;\n```\n```\n+---------+\n| Average |\n+---------+\n|  4.0000 |\n+---------+\n```\n\n# Count number of student present in the database\n```\n select count(name) from student;\n ```\n ```\n+-------------+\n| count(name) |\n+-------------+\n|           5 |\n+-------------+\n\n+----+------------------+----------+---------+\n| id | name             | city     | country |\n+----+------------------+----------+---------+\n|  1 | Pradhynesh       | Bhandara | Delhi   |\n|  2 | Shubham Bedarkar | Amravati | MP      |\n|  3 | Neha             | Berlin   | Germany |\n|  4 | Aditya Jain      | Nagpur   | India   |\n| 10 | Shubham          | Nagpur   | India   |\n+----+------------------+----------+---------+\n```\n#MIN and MAX\nSuppose you want to sort out the  person having the minimum id(in terms of number)\n```\n select name from student where id = (select min(id) from student);\n \n ```\n Here we used nested queries where in the first one we sprted the name and in the second we asked specified our need\n ```\n \n+------------+\n| name       |\n+------------+\n| Pradhynesh |\n+------------+\n\n```\nSame goes for MAX id you want to sort the person with the max id and display on the screen the n olloow the below command\n\n```\nselect name from student where id = (select max(id) from student);\n```\n```\n+---------+\n| name    |\n+---------+\n| Shubham |\n+---------+\n```\n# Foreign key and joins\nA FOREIGN KEY enforces data integrity, making sure the data confirms to some rules when it is added to the DB. \nA JOIN is used when you extract/query data from the DB by giving rules how to select the data.\n\nWe will now create a table name exams and connect it with student table\n```\ncreate table exams(roll int(15) primary key, center varchar(56), studentid int(56), foreign key (studentid) references student(id));\n```\n```\nshow tables;\n```\n```\n+--------------------+\n| Tables_in_employee |\n+--------------------+\n| exams              |\n| student            |\n+--------------------+\n```\n\n```\n desc exams;\n ```\n ```\n+-----------+-------------+------+-----+---------+-------+\n| Field     | Type        | Null | Key | Default | Extra |\n+-----------+-------------+------+-----+---------+-------+\n| roll      | int         | NO   | PRI | NULL    |       |\n| center    | varchar(56) | YES  |     | NULL    |       |\n| studentid | int         | YES  | MUL | NULL    |       |\n+-----------+-------------+------+-----+---------+-------+\n```\n\nLet's insert data into exams ans link with stdents\n```\n insert into exams values(15, \"St. John's School\", 10);\n  insert into exams values(21, \"Canter Point\", 3);\n  insert into exams values(20, \"SFS\", 4);\n ```\nSuppose you want those students whose exams are scheduled then we use the below command\n```\nselect student.name, student.city , exams.center from student , exams where student.id = exams.studentid;\n```\n\nHere we selected student name and city from table student and name of centrer from exams and we put a conditon that the id of student from student table should match with the student id of exams.\nThis is the output we were expecting.\n\n```\n+-------------+--------+-------------------+\n| name        | city   | center            |\n+-------------+--------+-------------------+\n| Shubham     | Nagpur | St. John's School |\n| Aditya Jain | Nagpur | SFS               |\n| Neha        | Berlin | Canter Point      |\n+-------------+--------+-------------------+\n```\nNow if you wish to find the entry for only one student namely aditya jain then you may use the below command: \n\n```\nselect student.name, student.city , exams.center from student, exams where student.id = exams.studentid and student.name= \"Aditya Jain\"; \n```\n```\n+-------------+--------+--------+\n| name        | city   | center |\n+-------------+--------+--------+\n| Aditya Jain | Nagpur | SFS    |\n+-------------+--------+--------+\n```\n\n# Happy Learning!\nWe have covered the basics as well as advance concepts of MySQL .\n\nTopics covered:\n Introduction to video\n Video content  \n What is database?\n What is MySQL?\n How to MySQL works?\n How to install mysql in our system\n MySQL Structure\n Create , Drop , User database , Database Operation\n Table Operation , Create , Drop , Alter, Rename , Update, AddColumn Insert, Update, Delete,    Select , where, and, or , not , in , between , limit , order by , offset, count,         \n sum,avg,min,max, nested queries and other important operation\n Like clause and search pattern\n Foreign key and joins\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheshubhamgour%2Fsql_in_one","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheshubhamgour%2Fsql_in_one","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheshubhamgour%2Fsql_in_one/lists"}