0% found this document useful (0 votes)
46 views12 pages

My SQL

This document discusses MySQL, an open-source relational database management system (RDBMS) that is fast, easy to use, and supports large databases. It can be customized and works with many programming languages. The document then outlines the steps to install MySQL using XAMPP and describes several data definition, manipulation, and control languages including create, alter, drop, insert, update, delete, select, grant, and revoke.

Uploaded by

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

My SQL

This document discusses MySQL, an open-source relational database management system (RDBMS) that is fast, easy to use, and supports large databases. It can be customized and works with many programming languages. The document then outlines the steps to install MySQL using XAMPP and describes several data definition, manipulation, and control languages including create, alter, drop, insert, update, delete, select, grant, and revoke.

Uploaded by

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

Reports on: A case study on DBMS.

Chapter: 1

MySQL

1.1 Introduction
MySQL Database
MySQL is a fast, easy-to-use RDBMS being used for many small and big
businesses. MySQL is developed, marketed and supported by MySQL AB, which is
a Swedish company. MySQL is becoming so popular because of many good
reasons −
 MySQL is released under an open-source license. So you have nothing to
pay to use it.
 MySQL is a very powerful program in its own right. It handles a large subset
of the functionality of the most expensive and powerful database
packages.
 MySQL uses a standard form of the well-known SQL data language.
 MySQL works on many operating systems and with many languages
including PHP, PERL, C, C++, JAVA, etc.
 MySQL works very quickly and works well even with large data sets.
 MySQL is very friendly to PHP, the most appreciated language for web
development.
 MySQL supports large databases, up to 50 million rows or more in a table.
The default file size limit for a table is 4GB, but you can increase this (if
your operating system can handle it) to a theoretical limit of 8 million
terabytes (TB).
 MySQL is customizable. The open-source GPL license allows programmers
to modify the MySQL software to fit their own specific environments.
1.2 Installation Steps

Step no 1 : Search XAMPP on Google

Step no 2: Check the downloads folder and you will see xampp file
Step no 3: Open file and click next

Step no 4: Click next


Step no 5: Set the path and click next

Step no 6: Click next


Step no 7: Ready to install click next

Step no 8: Welcome to xampp installing


Step no 9: Install finish

Step no 10: Select language


Step no 11: Start MySQL

Step no 12: Select Shell


1.3 Data Definition Language

a) Create command.
b) Alter command.

c) Drop command.

1.4 Data Manipulation languages

a) Insert command

b) Update command
c) Delete command

d) Select command

1.5) Data Control languages


a) Grant command

b) Revoke command

1.6) View

a) Create view

b) Execute view
c) Drop view

You might also like