0% found this document useful (0 votes)
7 views2 pages

1 Introduction

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

1 Introduction

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

MySQL

What is a Database?
1. A collection of data.

2. In relational database, its a bunch of tables.

3. A structured set of computerized data with the accessible


interface.

e.g. A phonebook

Database v/s Database Management System

MySQL 1
People often say’s DBMS & Database are same thing but it is
not. Both are much more different. Database is where we store
the entire data like user information, address details,
contact details, etc. Whereas DBMS is the system to talk with
database using queries or some sort of instructions like
SELECT, UPDATE, INSRT, etc.
DBMS consist the languages like MySQL, MongoDB, etc. to talk
with the Database.

💡 MySQL, SQLite, MongoDB, PostgreSQL are not Databases,


these are Database Management System’s.

SQL v/s MySQL


SQL MySQL

SQL stands for Structure Query MySQL is a DBMS which implements


Language. the SQL.
It is used to manipulate the MySQL is a software whereas SQL is
data in database using queries. a database language.

While working with MySQL, we


actually write the SQL queries.

MySQL, PostgreSQL, SQLite,


MongoDB i.e. Relational
Databases all uses the SQL
queries.

1.INITIAL DATABASE COMMANDS

2.TABLES (The true ❤ of SQL)


3.DATA TYPES

4.CREATING & DELETING A TABLES

5.INSERTING DATA INTO THE TABLES

MySQL 2

You might also like