02 Intro To SQL
02 Intro To SQL
Relational Databases
and MySQL
Charles Severance
www.wa4e.com
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Merg
e
Transacti
ons
Sorted https://en.wikipedia.org/wiki/IBM_729
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Random
Access
• When you can randomly
access data...
https://en.wikipedia.org/wiki/Hard_disk_drive_platter
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Relational Databases
Relational databases model data by
storing rows and columns in tables.
The power of the relational
database lies in its ability to
efficiently retrieve data from those
tables - in particular, where the
query involves multiple tables and
the relationships between those
tables.
http://en.wikipedia.org/wiki/Relational_database
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
• National Institute of
Standards and
Technology (NIST)
https://youtu.be/rLUm3vst87g
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
SQL
Structured Query Language is
the language we use to issue
commands to the database
- Create/Insert data
- Update data
Terminology
• Database - contains one or more tables
• Relation (or table) - contains tuples and attributes
• Tuple (or row) - a set of fields which generally
represent an “object” like a person or a music track
A relation is defined as a set of tuples that have the same attributes. A tuple
usually represents an object and information about that object. Objects are
typically physical objects or concepts. A relation is usually described as a
table, which is organized into rows and columns. All the data referenced by an
attribute are in the same domain and conform to the same constraints.
(wikipedia)
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Columns / Attributes
Rows /
Tuples
Tables / Relations
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
JavaScri
pt
RRC/HTTP SQL
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Using SQL
phpMyAdmin SQL
(Browser)
User Database
D.B.A. Server
mysql MySQL
(Command SQL
Line)
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Command Line
After Control Panel is running...
•Macintosh
- /Applications/MAMP/Library/bin/mysql --host=localhost -uroot –p
•Windows
- c:\xampp\mysql\bin\mysql.exe -u root –p
Creating a Database
Command Line:
DESCRIBE Users;
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
SQL: Insert
The INSERT statement inserts a row
into a table
SQL: Delete
Deletes a row in a table based on selection
criteria
SQL: Update
Allows the updating of a field with a WHERE
clause
SQL Summary
INSERT INTO Users (name, email) VALUES ('Ted', 'ted@umich.edu')
String Fields
• Understand character sets and are indexable for
searching
Text Fields
• Have a character set - paragraphs or HTML pages
- TINYTEXT up to 255 characters
- TEXT up to 65K
- MEDIUMTEXT up to 16M
- LONGTEXT up to 4G
- BLOB(n) - up to 65K
- MEDIUMBLOB(n) - up to 16M
- LONGBLOB(n) - up to 4G
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Integer Numbers
Integer numbers are very efficient, take little storage, and
are easy to process because CPUs can often compare them
with a single instruction.
Dates
• TIMESTAMP - 'YYYY-MM-DD HH:MM:SS' (1970,
2037)
AUTO_INCREMENT
Often as we make DROP TABLE Users;
multiple tables and need
to JOIN them together we CREATE TABLE Users (
need an integer primary user_id INT UNSIGNED NOT NULL
key for each row so we AUTO_INCREMENT,
name VARCHAR(128),
can efficiently add a
email VARCHAR(128),
reference to a row in PRIMARY KEY(user_id),
some other table as a INDEX(email)
foreign key. )
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
MySQL Functions
Many operations in MySQL need to use the built-in
functions (like NOW() for dates).
• http://dev.mysql.com/doc/refman/5.0/en/string-
functions.html
• http://dev.mysql.com/doc/refman/5.0/en/date-and-time-
functions.html
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Indexes
• As a table gets large (they always do), scanning all the
data to find a single row becomes very costly
• Hashes or Trees
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
B-Trees
A B-tree is a tree data structure that keeps data sorted
and allows searches, sequential access, insertions, and
deletions in logarithmic amortized time. The B-tree is
optimized for systems that read and write large blocks of
data. It is commonly used in databases and file systems.
http://en.wikipedia.org/wiki/B-tree
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Hashes
A hash function is any algorithm or
subroutine that maps large data sets to
smaller data sets, called keys. For
example, a single integer can serve as
an index to an array (cf. associative
array). The values returned by a hash
function are called hash values, hash
codes, hash sums, checksums, or
simply hashes.
Hash functions are mostly used to
accelerate table lookup or data
comparison tasks such as finding items
in a database... http://en.wikipedia.org/wiki/Hash_function
WEB APPLICATIONS
Rational Databases and MySQL FOR EVERYBODY
Summary
• SQL allows us to describe the shape of data to be stored
and give many hints to the database engine as to how
we will be accessing or using the data.
Acknowledgements / Contributions
These slides are Copyright 2010- Charles R. Continue new Contributors and Translators here
Severance (www.dr-chuck.com) as part of
www.wa4e.com and made available under a Creative
Commons Attribution 4.0 License. Please maintain
this last slide in all copies of the document to comply
with the attribution requirements of the license. If
you make a change, feel free to add your name and
organization to the list of contributors on this page as
you republish the materials.