Top Banner
Databas e
10

My Sql

Dec 14, 2014

Download

Education

irenazd

This presentation was created by Polish student- Tomek B - final class
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: My Sql

Database

Page 2: My Sql

MySQL is a powerful Relational Database Management System (RDBMS) which uses Structured Query Language (SQL) statements.

SQL is a database language that is used

to retrieve, insert, delete and update stored data.

Page 3: My Sql

The data in MySQL is stored in database objects called tables.

A table is a collections of related data entries and it consists of columns and rows.

CR O W

LUMN

Page 4: My Sql

RDBMS is a software that: Enables you to implement a database

with tables, columns, and indexes.

Guarantees the Referential Integrity between rows of various tables.

Updates the indexes automatically.

Interprets an SQL query and combines information from various tables.

Page 5: My Sql

Structured Query Langauge is cross between a math-like language and an English-like language that allows us to ask a database questions or tell it to do things.

It uses English phrases to define an action, but uses math-like symbols to make comparisons. For example:

Where 'SELECT', 'FROM' and 'table' are in English, but '*' is a symbol that means all.

Page 6: My Sql

MySQL is released under an open-source license. So you have nothing to pay to use it.

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.

Page 7: My Sql

MySQL is a database server program and as such is installed on one machine, but can 'serve' the database to a variety of locations.

Page 8: My Sql

The MySQL Server is installed on a Server and can be accessed directly via various client interfaces, which send SQL statements to the server and then display the results to a user.

Page 9: My Sql

One great thing about MySQL is that it can be scaled down to support embedded database applications. Perhaps it is because of this reputation that many people believe that MySQL can only handle small to medium-sized systems.

The truth is that MySQL is the standard database for web sites that support huge volumes of both data and end users (like Yahoo, Google).

Page 10: My Sql

http://www.w3schools.com/PHP/php_mysql_intro.asp

http://www.keithjbrown.co.uk/vworks/mysql/mysql_p1.php

http://www.tutorialspoint.com/mysql/mysql-introduction.htm