Skip to content

MySQL is a widely-used open-source Relational Database Management System (RDBMS) for storing, managing, and retrieving data in a structured format.

abhistorm/MySQL-DBMS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

MySQL-DBMS

MySQL is a widely-used open-source Relational Database Management System (RDBMS) for storing, managing, and retrieving data in a structured format.

show databases;  
create database [db_name];  
use [db_name];  
drop database [db_name]  
  
create table [table_name] (col1 , col2, col3 , col4......);  
eg user  
    
show tables;  
desc [tb_name];  
drop table [table_name];   
  
alter table [old table name] rename to [new name];  
truncate table [table_name];  
  
insert into [table_name](id,name,city) values(12,'durgesh','delhi');  
insert intor [table_name] values(12,'SamSulek','kanpur');  
     
alter table [table_name] add col1;    
update [table_name] set col= value , col = value where col=value;  
delete from [table_name] where col=value;
where:
Enter password: ****
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 16
Server version: 8.0.21 MySQL Community Server - GPL

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use learn;
Database changed
mysql> show tables;
+-----------------+
| Tables_in_learn |
+-----------------+
| student         |
+-----------------+
1 row in set (0.00 sec)
mysql> select * from student;
| id       | name    | city    | country |
|----------|---------|---------|---------|
| 23       | SamSulek   | delhi   | ind     |
| 24       | Abhi  | bangalore | india   |
| 234      | Neha  | bangalore | india   |
| 246      | Joee   | bangalore | india   |
| 2334     | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |

6 rows in set (0.00 sec)
mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student where city='bangalore';
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
4 rows in set (0.00 sec)

mysql> select * from student where country='india';
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
5 rows in set (0.00 sec)

mysql> select * from student where country='india';
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
5 rows in set (0.00 sec)

mysql> select name,city,country from student where country='india';
+---------+---------+---------+
| name    | city    | country |
+---------+---------+---------+
| Abhi  | bangalore | india   |
| Neha  | bangalore | india   |
| Joee   | bangalore | india   |
| aman    | kanpur  | india   |
| Arushi | bangalore | india   |
+---------+---------+---------+
5 rows in set (0.00 sec)

mysql> select name as  "USERNAME" , city as "CITYNAME" from student ;
+----------+----------+
| USERNAME | CITYNAME |
+----------+----------+
| SamSulek    | delhi    |
| Abhi   | bangalore  |
| Neha   | bangalore  |
| Joee    | bangalore  |
| aman     | kanpur   |
| Arushi  | bangalore  |
+----------+----------+
6 rows in set (0.00 sec)

mysql> select * from student where city='kanpur';
+------+------+--------+---------+
| id   | name | city   | country |
+------+------+--------+---------+
| 2334 | aman | kanpur | india   |
+------+------+--------+---------+
1 row in set (0.00 sec)
mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)


mysql> select country from student;
+---------+
| country |
+---------+
| ind     |
| india   |
| india   |
| india   |
| india   |
| india   |
+---------+
6 rows in set (0.00 sec)

mysql> select distinct(country) from student;
+---------+
| country |
+---------+
| ind     |
| india   |
+---------+
2 rows in set (0.00 sec)

mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student where country='india' and  city='bangalore';
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
4 rows in set (0.00 sec)

mysql> select * from student where country='india' or city='bangalore';
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
5 rows in set (0.00 sec)

mysql> select * from user;
ERROR 1146 (42S02): Table 'learn.user' doesn't exist
mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student where id >=24 and id<=2334;
+------+--------+---------+---------+
| id   | name   | city    | country |
+------+--------+---------+---------+
|   24 | Abhi | bangalore | india   |
|  234 | Neha | bangalore | india   |
|  246 | Joee  | bangalore | india   |
| 2334 | aman   | kanpur  | india   |
+------+--------+---------+---------+
4 rows in set (0.00 sec)

mysql> select * from student where id between 24 and 2334;
+------+--------+---------+---------+
| id   | name   | city    | country |
+------+--------+---------+---------+
|   24 | Abhi | bangalore | india   |
|  234 | Neha | bangalore | india   |
|  246 | Joee  | bangalore | india   |
| 2334 | aman   | kanpur  | india   |
+------+--------+---------+---------+
4 rows in set (0.00 sec)

mysql> select * from student where id >24 and id<2334;
+-----+--------+---------+---------+
| id  | name   | city    | country |
+-----+--------+---------+---------+
| 234 | Neha | bangalore | india   |
| 246 | Joee  | bangalore | india   |
+-----+--------+---------+---------+
2 rows in set (0.00 sec)

mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student where id=23 or id=234 or id=246;
+-----+--------+---------+---------+
| id  | name   | city    | country |
+-----+--------+---------+---------+
|  23 | SamSulek  | delhi   | ind     |
| 234 | Neha | bangalore | india   |
| 246 | Joee  | bangalore | india   |
+-----+--------+---------+---------+
3 rows in set (0.00 sec)

mysql> select * from student where id in(23,234,246);
+-----+--------+---------+---------+
| id  | name   | city    | country |
+-----+--------+---------+---------+
|  23 | SamSulek  | delhi   | ind     |
| 234 | Neha | bangalore | india   |
| 246 | Joee  | bangalore | india   |
+-----+--------+---------+---------+
3 rows in set (0.00 sec)

mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student limit 4;
+-----+--------+---------+---------+
| id  | name   | city    | country |
+-----+--------+---------+---------+
|  23 | SamSulek  | delhi   | ind     |
|  24 | Abhi | bangalore | india   |
| 234 | Neha | bangalore | india   |
| 246 | Joee  | bangalore | india   |
+-----+--------+---------+---------+
4 rows in set (0.00 sec)

mysql> select * from student limit 2 2;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2' at line 1
mysql> select * from student limit 2 offset 2;
+-----+--------+---------+---------+
| id  | name   | city    | country |
+-----+--------+---------+---------+
| 234 | Neha | bangalore | india   |
| 246 | Joee  | bangalore | india   |
+-----+--------+---------+---------+
2 rows in set (0.00 sec)

mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student order by id;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student order by id desc;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
| 24234236 | Arushi | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
|      246 | Joee   | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|       24 | Abhi  | bangalore | india   |
|       23 | SamSulek   | delhi   | ind     |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student order by name desc;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|      246 | Joee   | bangalore | india   |
|       24 | Abhi  | bangalore | india   |
| 24234236 | Arushi | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|       23 | SamSulek   | delhi   | ind     |
|     2334 | aman    | kanpur  | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student order by name asc;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|     2334 | aman    | kanpur  | india   |
|       23 | SamSulek   | delhi   | ind     |
|      234 | Neha  | bangalore | india   |
| 24234236 | Arushi | bangalore | india   |
|       24 | Abhi  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student order by name;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|     2334 | aman    | kanpur  | india   |
|       23 | SamSulek   | delhi   | ind     |
|      234 | Neha  | bangalore | india   |
| 24234236 | Arushi | bangalore | india   |
|       24 | Abhi  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
|       23 | SamSulek   | delhi   | ind     |
|       24 | Abhi  | bangalore | india   |
|      234 | Neha  | bangalore | india   |
|      246 | Joee   | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
| 24234236 | Arushi | bangalore | india   |
+----------+---------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student order by id desc limit 2;
+----------+---------+---------+---------+
| id       | name    | city    | country |
+----------+---------+---------+---------+
| 24234236 | Arushi | bangalore | india   |
|     2334 | aman    | kanpur  | india   |
+----------+---------+---------+---------+
2 rows in set (0.00 sec)

mysql> update student set name='ram singh' where id=24234236;
Query OK, 1 row affected (0.02 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select * from student;
+----------+-----------+---------+---------+
| id       | name      | city    | country |
+----------+-----------+---------+---------+
|       23 | SamSulek     | delhi   | ind     |
|       24 | Abhi    | bangalore | india   |
|      234 | Neha    | bangalore | india   |
|      246 | Joee     | bangalore | india   |
|     2334 | aman      | kanpur  | india   |
| 24234236 | ram singh | bangalore | india   |
+----------+-----------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student;
+----------+-----------+---------+---------+
| id       | name      | city    | country |
+----------+-----------+---------+---------+
|       23 | SamSulek     | delhi   | ind     |
|       24 | Abhi    | bangalore | india   |
|      234 | Neha    | bangalore | india   |
|      246 | Joee     | bangalore | india   |
|     2334 | aman      | kanpur  | india   |
| 24234236 | ram singh | bangalore | india   |
+----------+-----------+---------+---------+
6 rows in set (0.00 sec)

mysql> select * from student where name like 'a%';
+------+-------+--------+---------+
| id   | name  | city   | country |
+------+-------+--------+---------+
|   23 | SamSulek | delhi  | ind     |
| 2334 | aman  | kanpur | india   |
+------+-------+--------+---------+
2 rows in set (0.00 sec)

mysql> select * from student where city like "_u%";
+----------+-----------+---------+---------+
| id       | name      | city    | country |
+----------+-----------+---------+---------+
|       24 | Abhi    | bangalore | india   |
|      234 | Neha    | bangalore | india   |
|      246 | Joee     | bangalore | india   |
| 24234236 | ram singh | bangalore | india   |
+----------+-----------+---------+---------+
4 rows in set (0.00 sec)

mysql> select * from student where city like "%o_";
+----------+-----------+---------+---------+
| id       | name      | city    | country |
+----------+-----------+---------+---------+
|       24 | Abhi    | bangalore | india   |
|      234 | Neha    | bangalore | india   |
|      246 | Joee     | bangalore | india   |
| 24234236 | ram singh | bangalore | india   |
+----------+-----------+---------+---------+
4 rows in set (0.00 sec)

mysql> select * from student;
+----------+-----------+---------+---------+
| id       | name      | city    | country |
+----------+-----------+---------+---------+
|       23 | SamSulek     | delhi   | ind     |
|       24 | Abhi    | bangalore | india   |
|      234 | Neha    | bangalore | india   |
|      246 | Joee     | bangalore | india   |
|     2334 | aman      | kanpur  | india   |
| 24234236 | ram singh | bangalore | india   |
+----------+-----------+---------+---------+
6 rows in set (0.00 sec)

mysql> select SUM(id) from student;
+----------+
| SUM(id)  |
+----------+
| 24237097 |
+----------+
1 row in set (0.00 sec)

mysql> select SUM(id) as "Total Salary" from student;
+--------------+
| Total Salary |
+--------------+
|     24237097 |
+--------------+
1 row in set (0.00 sec)

mysql> select AVG(id) from student;
+--------------+
| AVG(id)      |
+--------------+
| 4039516.1667 |
+--------------+
1 row in set (0.00 sec)

mysql> select COUNT(id) from student;
+-----------+
| COUNT(id) |
+-----------+
|         6 |
+-----------+
1 row in set (0.00 sec)

mysql> select MIN(id) from student;
+---------+
| MIN(id) |
+---------+
|      23 |
+---------+
1 row in set (0.00 sec)

mysql> select name from student where id = (select MIN(id) from student) ;
+-------+
| name  |
+-------+
| SamSulek |
+-------+
1 row in set (0.00 sec)

mysql> select name from student where id = (select MAX(id) from student) ;
+-----------+
| name      |
+-----------+
| ram singh |
+-----------+
1 row in set (0.00 sec)

mysql> show tables;
+-----------------+
| Tables_in_learn |
+-----------------+
| student         |
+-----------------+
1 row in set (0.00 sec)

mysql> select * from student;
+----------+-----------+---------+---------+
| id       | name      | city    | country |
+----------+-----------+---------+---------+
|       23 | SamSulek     | delhi   | ind     |
|       24 | Abhi    | bangalore | india   |
|      234 | Neha    | bangalore | india   |
|      246 | Joee     | bangalore | india   |
|     2334 | aman      | kanpur  | india   |
| 24234236 | ram singh | bangalore | india   |
+----------+-----------+---------+---------+
6 rows in set (0.00 sec)

mysql> create table laptops(lid int primary key, lmodel varchar(200), studentId int , foreign key(studentId) references student(id));
Query OK, 0 rows affected (0.09 sec)

mysql> show tables;
+-----------------+
| Tables_in_learn |
+-----------------+
| laptops         |
| student         |
+-----------------+
2 rows in set (0.00 sec)

mysql> desc student;
+---------+--------------+------+-----+---------+-------+
| Field   | Type         | Null | Key | Default | Extra |
+---------+--------------+------+-----+---------+-------+
| id      | int          | NO   | PRI | NULL    |       |
| name    | varchar(100) | NO   |     | NULL    |       |
| city    | varchar(50)  | YES  |     | NULL    |       |
| country | varchar(50)  | YES  |     | NULL    |       |
+---------+--------------+------+-----+---------+-------+
4 rows in set (0.00 sec)

mysql> desc laptops;
+-----------+--------------+------+-----+---------+-------+
| Field     | Type         | Null | Key | Default | Extra |
+-----------+--------------+------+-----+---------+-------+
| lid       | int          | NO   | PRI | NULL    |       |
| lmodel    | varchar(200) | YES  |     | NULL    |       |
| studentId | int          | YES  | MUL | NULL    |       |
+-----------+--------------+------+-----+---------+-------+
3 rows in set (0.00 sec)

mysql> insert into laptops values(13414,'HP',96418565);
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`learn`.`laptops`, CONSTRAINT `laptops_ibfk_1` FOREIGN KEY (`studentId`) REFERENCES `student` (`id`))
mysql> insert into laptops values(13414,'HP',23);
Query OK, 1 row affected (0.00 sec)

mysql> select * from laptops;
+-------+--------+-----------+
| lid   | lmodel | studentId |
+-------+--------+-----------+
| 13414 | HP     |        23 |
+-------+--------+-----------+
1 row in set (0.00 sec)

mysql> insert into laptops values(13414,'Dell',24);
ERROR 1062 (23000): Duplicate entry '13414' for key 'laptops.PRIMARY'
mysql> insert into laptops values(134132454,'Dell',24);
Query OK, 1 row affected (0.00 sec)

mysql> select * from laptops;
+-----------+--------+-----------+
| lid       | lmodel | studentId |
+-----------+--------+-----------+
|     13414 | HP     |        23 |
| 134132454 | Dell   |        24 |
+-----------+--------+-----------+
2 rows in set (0.00 sec)

mysql> select * from student;
+----------+-----------+---------+---------+
| id       | name      | city    | country |
+----------+-----------+---------+---------+
|       23 | SamSulek     | delhi   | ind     |
|       24 | Abhi    | bangalore | india   |
|      234 | Neha    | bangalore | india   |
|      246 | Joee     | bangalore | india   |
|     2334 | aman      | kanpur  | india   |
| 24234236 | ram singh | bangalore | india   |
+----------+-----------+---------+---------+
6 rows in set (0.00 sec)

mysql> select student.name,student.city , laptops.lmodel from student , laptops where student.id=laptops.studentId;
+--------+---------+--------+
| name   | city    | lmodel |
+--------+---------+--------+
| SamSulek  | delhi   | HP     |
| Abhi | bangalore | Dell   |
+--------+---------+--------+
2 rows in set (0.00 sec)

mysql> select student.name,student.city , laptops.lmodel from student , laptops where student.id=laptops.studentId and student.name='SamSulek';
+-------+-------+--------+
| name  | city  | lmodel |
+-------+-------+--------+
| SamSulek | delhi | HP     |
+-------+-------+--------+
1 row in set (0.00 sec)

mysql> select student.name , laptops.lmodel from student inner join laptops on student.id=laptops.studentId;
+--------+--------+
| name   | lmodel |
+--------+--------+
| SamSulek  | HP     |
| Abhi | Dell   |
+--------+--------+
2 rows in set (0.00 sec)

mysql>

Database and Table Operations: Database Operations:

show databases;: Lists available databases. create database [db_name];: Creates a new database. use [db_name];: Switches to a specific database. drop database [db_name];: Deletes a database. Table Operations:

create table [table_name] (col1 , col2, col3 , col4......);: Creates a new table with specified columns. show tables;: Lists tables in the current database. desc [tb_name];: Describes the structure of a table. drop table [table_name];: Deletes a table. alter table [old table name] rename to [new name];: Renames a table. truncate table [table_name];: Empties a table. Data Manipulation: Inserting Data:

insert into table_name values(12,'durgesh','delhi');: Inserts a row into a table. insert into [table_name] values(12,'SamSulek','kanpur');: Another way to insert data into a table. Updating Data:

update [table_name] set col= value , col = value where col=value;: Updates existing records in a table. Deleting Data:

delete from [table_name] where col=value;: Deletes specific records from a table. Querying Data: Basic Queries:

select * from [table_name];: Retrieves all rows and columns from a table. select * from [table_name] where col=value;: Retrieves rows based on a condition. select distinct(col_name) from [table_name];: Retrieves unique values from a column. select col1, col2 from [table_name];: Retrieves specific columns from a table. select col1 as "Alias" from [table_name];: Uses aliases for column names in output. Filtering Data:

where clause: Used for filtering rows based on specified conditions (AND, OR, LIKE, BETWEEN, etc.). Sorting Data:

order by col_name [asc|desc];: Sorts the result set in ascending or descending order. Aggregate Functions:

select SUM(col_name), select AVG(col_name), select COUNT(col_name), select MIN(col_name), select MAX(col_name): Computes aggregate values. Additional SQL Operations: limit [num];: Limits the number of rows returned in a result set. offset [num];: Skips a specified number of rows before starting to return rows. like 'pattern';: Searches for a specified pattern in a column. Foreign Keys and Relationships: You created a table laptops with a foreign key referencing the id column of the student table.

About

MySQL is a widely-used open-source Relational Database Management System (RDBMS) for storing, managing, and retrieving data in a structured format.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published