SlideShare a Scribd company logo
1 of 42
DEPARTMENT OF ELECTRONICS AND COMMUNICATION
18ECE036J - DATABASE MANAGEMENT SYSTEMS
UNIT 1
DATA MANAGEMNET AND MODELING
9/20/2022 1
SQL
 SQL is a standard language for accessing
and manipulating databases.
 SQL stands for Structured Query
Language
 SQL lets you access and manipulate
databases
 SQL became a standard of the American
National Standards Institute (ANSI) in
1986, and of the International
Organization for Standardization (ISO) in
1987
What Can SQL do
 SQL can execute queries against a database
 SQL can retrieve data from a database
 SQL can insert records in a database
 SQL can update records in a database
 SQL can delete records from a database
 SQL can create new databases
 SQL can create new tables in a database
 SQL can create stored procedures in a
database
 SQL can create views in a database
 SQL can set permissions on tables,
procedures, and views
Using SQL in Your Web Site
 To build a web site that shows data
from a database, you will need:
 An RDBMS database program (i.e.
MS Access, SQL Server, MySQL)
 To use a server-side scripting
language, like PHP or ASP
 To use SQL to get the data you want
 To use HTML / CSS to style the page
RDBMS
 RDBMS stands for Relational
Database Management System.
 RDBMS is the basis for SQL, and for
all modern database systems such as
MS SQL Server, IBM DB2, Oracle,
MySQL, and Microsoft Access.
 The data in RDBMS is stored in
database objects called tables. A table
is a collection of related data entries
and it consists of columns and rows.
Cont’d
 Look at the "Customers" table:
SELECT * FROM Customers;
 Every table is broken up into smaller entities called fields. The
fields in the Customers table consist of CustomerID,
CustomerName, ContactName, Address, City, PostalCode
and Country. A field is a column in a table that is designed to
maintain specific information about every record in the table.
 A record, also called a row, is each individual entry that exists
in a table. For example, there are 91 records in the above
Customers table. A record is a horizontal entity in a table.
 A column is a vertical entity in a table that contains all
information associated with a specific field in a table.
Database Tables
 A database most often contains one or
more tables. Each table is identified by
a name (e.g. "Customers" or
"Orders"). Tables contain records
(rows) with data.
Example of table
Important SQL Commands
 SELECT - extracts data from a database
 UPDATE - updates data in a database
 DELETE - deletes data from a database
 INSERT INTO - inserts new data into a database
 CREATE DATABASE - creates a new database
 ALTER DATABASE - modifies a database
 CREATE TABLE - creates a new table
 ALTER TABLE - modifies a table
 DROP TABLE - deletes a table
 CREATE INDEX - creates an index (search key)
 DROP INDEX - deletes an index
Rules to Create a Database
 First, we need to know the basic rules
for creating new DB:
 Database names must be unique
within an instance of SQL Server.
 Database names can be a maximum
of 128 characters.
 The CREATE DATABASE statement
must run in an auto-commit mode.
Cont’d
SQL CREATE DATABASE
Statement
 The CREATE DATABASE statement
is used to create a new SQL
database.
 Syntax
CREATE DATABASE databasename;
CREATE DATABASE Example
 The following SQL statement creates
a database called "testDB":
 Example
 CREATE DATABASE testDB;
SQL DROP
DATABASE Statement
 The DROP DATABASE statement is
used to drop an existing SQL
database.
Syntax
 DROP DATABASE databasename;
 DROP DATABASE Example
 The following SQL statement drops
the existing database "testDB":
Example
 DROP DATABASE testDB;
MySQL Data Types
 Each column in a database table is
required to have a name and a data
type.
 An SQL developer must decide what
type of data that will be stored inside
each column when creating a table. The
data type is a guideline for SQL to
understand what type of data is expected
inside of each column, and it also
identifies how SQL will interact with the
stored data.
 In MySQL there are three main data
Numeric Data Types
Data type Description
BIT(size) A bit-value type. The number of bits per value is specified in size.
The size parameter can hold a value from 1 to 64. The default value
for size is 1.
TINYINT(size) A very small integer. Signed range is from -128 to 127. Unsigned range
is from 0 to 255. The size parameter specifies the maximum display
width (which is 255)
BOOL Zero is considered as false, nonzero values are considered as true.
BOOLEAN Equal to BOOL
SMALLINT(size) A small integer. Signed range is from -32768 to 32767. Unsigned range
is from 0 to 65535. The size parameter specifies the maximum display
width (which is 255)
MEDIUMINT(size) A medium integer. Signed range is from -8388608 to 8388607. Unsigned
range is from 0 to 16777215. The size parameter specifies the maximum
display width (which is 255)
INT(size) A medium integer. Signed range is from -
2147483648 to 2147483647. Unsigned range is
from 0 to 4294967295. The size parameter specifies
the maximum display width (which is 255)
INTEGER(size) Equal to INT(size)
BIGINT(size) A large integer. Signed range is from -
9223372036854775808 to 9223372036854775807.
Unsigned range is from 0 to
18446744073709551615. The size parameter
specifies the maximum display width (which is 255)
FLOAT(size, d) A floating point number. The total number of digits is
specified in size. The number of digits after the
decimal point is specified in the d parameter. This
syntax is deprecated in MySQL 8.0.17, and it will be
removed in future MySQL versions
FLOAT(p) A floating point number. MySQL uses the p value to
determine whether to use FLOAT or DOUBLE for
the resulting data type. If p is from 0 to 24, the data
type becomes FLOAT(). If p is from 25 to 53, the
data type becomes DOUBLE()
DOUBLE(size, d) A normal-size floating point number. The total
number of digits is specified in size. The number of
digits after the decimal point is specified in
the d parameter
DOUBLE PRECISION(size, d)
DECIMAL(size, d) An exact fixed-point number. The total number of
digits is specified in size. The number of digits after
the decimal point is specified in the d parameter.
The maximum number for size is 65. The maximum
number for d is 30. The default value for size is 10.
Date and Time Data Types
Data type Description
DATE A date. Format: YYYY-MM-DD. The supported range is from
'1000-01-01' to '9999-12-31'
DATETIME(fsp) A date and time combination. Format: YYYY-MM-DD hh:mm:ss.
The supported range is from '1000-01-01 00:00:00' to '9999-12-31
23:59:59'. Adding DEFAULT and ON UPDATE in the column
definition to get automatic initialization and updating to the current
date and time
TIMESTAMP(fsp) A timestamp. TIMESTAMP values are stored as the number of
seconds since the Unix epoch ('1970-01-01 00:00:00' UTC).
Format: YYYY-MM-DD hh:mm:ss. The supported range is from
'1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC.
Automatic initialization and updating to the current date and time
can be specified using DEFAULT CURRENT_TIMESTAMP and
ON UPDATE CURRENT_TIMESTAMP in the column definition
TIME(fsp) A time. Format: hh:mm:ss. The supported range is from '-
838:59:59' to '838:59:59'
YEAR A year in four-digit format. Values allowed in four-digit format:
1901 to 2155, and 0000.
MySQL 8.0 does not support year in two-digit format.
String Data Types
Data type Description
CHAR(size) A FIXED length string (can contain letters, numbers,
and special characters). The size parameter specifies
the column length in characters - can be from 0 to 255.
Default is 1
VARCHAR(size) A VARIABLE length string (can contain letters, numbers,
and special characters). The size parameter specifies
the maximum column length in characters - can be from
0 to 65535
BINARY(size) Equal to CHAR(), but stores binary byte strings.
The size parameter specifies the column length in
bytes. Default is 1
VARBINARY(size) Equal to VARCHAR(), but stores binary byte strings.
The size parameter specifies the maximum column
length in bytes.
TINYBLOB For BLOBs (Binary Large OBjects). Max length: 255
bytes
TINYTEXT Holds a string with a maximum length of 255 characters
BLOB(size) For BLOBs (Binary Large OBjects).
Holds up to 65,535 bytes of data
MEDIUMTEXT Holds a string with a maximum length
of 16,777,215 characters
MEDIUMBLOB For BLOBs (Binary Large OBjects).
Holds up to 16,777,215 bytes of data
LONGTEXT Holds a string with a maximum length
of 4,294,967,295 characters
LONGBLOB For BLOBs (Binary Large OBjects).
Holds up to 4,294,967,295 bytes of
data
ENUM(val1, val2, val3, ...) A string object that can have only one
value, chosen from a list of possible
values. You can list up to 65535 values
in an ENUM list. If a value is inserted
that is not in the list, a blank value will
be inserted. The values are sorted in
the order you enter them
SET(val1, val2, val3, ...) A string object that can have 0 or more
values, chosen from a list of possible
values. You can list up to 64 values in
a SET list
DML
The SQL INSERT INTO
Statement
 The INSERT INTO statement is used to
insert new records in a table.
 INSERT INTO Syntax
 It is possible to write the INSERT
INTO statement in two ways:
 1. Specify both the column names and
the values to be inserted:
SYNTAX:
INSERT INTO table_name (column1,
column2, colu mn3, ...)
VALUES (value1, value2, value3, ...);
CONT’D
 2. If you are adding values for all the
columns of the table, you do not need to
specify the column names in the SQL query.
However, make sure the order of the values
is in the same order as the columns in the
table. Here, the INSERT INTO syntax would
be as follows:
EXAMPLE:
INSERT INTO table_name
VALUES (value1, value2, value3, ...);
Insert Data Only in Specified
Columns
 It is also possible to only insert data in
specific columns.
 The following SQL statement will insert a
new record, but only insert data in the
"CustomerName", "City", and "Country"
columns (CustomerID will be updated
automatically):
Example
INSERT INTO Customers
(CustomerName, City,Country)
VALUES ('Cardinal', 'Stavanger', 'Nor
way');
DML-The SQL SELECT
Statement
 The SELECT statement is used to
select data from a database.
 The data returned is stored in a result
table, called the result-set.
SELECT Syntax
SELECT column1, column2, ...
FROM table_name;
SELECT * Example
 The following SQL statement selects
all the columns from the "Customers"
table:
Example
SELECT * FROM Customers;
The SQL SELECT DISTINCT
Statement
 The SELECT DISTINCT statement is
used to return only distinct (different)
values.
 Inside a table, a column often contains
many duplicate values; and
sometimes you only want to list the
different (distinct) values.
SELECT DISTINCT Syntax
SELECT DISTINCT column1, column2, ...
FROM table_name;
EXAMPLE
 The following SQL statement selects
only the DISTINCT values from the
"Country" column in the "Customers"
table:
 Example
 SELECT DISTINCT Country FROM C
ustomers;
SQL PRIMARY KEY Constraint
 The PRIMARY KEY constraint
uniquely identifies each record in a
table.
 Primary keys must contain UNIQUE
values, and cannot contain NULL
values.
 A table can have only ONE primary
key; and in the table, this primary key
can consist of single or multiple
columns (fields).

PRIMARY KEY
 The following SQL creates a PRIMARY
KEY on the "ID" column when the
"Persons" table is created:
 MySQL:
 CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
PRIMARY KEY (ID)
);
SQL FOREIGN KEY Constraint
PersonID LastName FirstName Age
1 Hansen Ola 30
2 Svendson Tove 23
3 Pettersen Kari 20
• The FOREIGN KEY constraint is used to prevent
actions that would destroy links between
tables.
• A FOREIGN KEY is a field (or collection of fields)
in one table, that refers to the PRIMARY KEY in
another table.
• The table with the foreign key is called the child
table, and the table with the primary key is
called the referenced or parent table.
• Look at the following two tables:
Persons Table
Orders Table
 Notice that the "PersonID" column in the "Orders"
table points to the "PersonID" column in the "Persons"
table.
 The "PersonID" column in the "Persons" table is
the PRIMARY KEY in the "Persons" table.
 The "PersonID" column in the "Orders" table is
a FOREIGN KEY in the "Orders" table.
 The FOREIGN KEY constraint prevents invalid data
from being inserted into the foreign key column,
because it has to be one of the values contained in the
parent table.
OrderID OrderNumb
er
PersonID
1 77895 3
2 44678 3
3 22456 2
4 24562 1
SQL FOREIGN KEY on CREATE
TABLE
 The following SQL creates a FOREIGN
KEY on the "PersonID" column when the
"Orders" table is created:
 MySQL:
 CREATE TABLE Orders (
OrderID int NOT NULL,
OrderNumber int NOT NULL,
PersonID int,
PRIMARY KEY (OrderID),
FOREIGN KEY (PersonID) REFEREN
CES Persons(PersonID)
);
SQL FOREIGN KEY on ALTER
TABLE
 To create a FOREIGN KEY constraint
on the "PersonID" column when the
"Orders" table is already created, use
the following SQL:
 MySQL / SQL Server / Oracle / MS
Access:
 ALTER TABLE Orders
ADD FOREIGN KEY (PersonID) REF
ERENCES Persons(PersonID);
MySQL Aggregate Functions
 MySQL's aggregate function is used to perform calculations on
multiple values and return the result in a single value like the
average of all values, the sum of all values, and maximum &
minimum value among certain groups of values. We mostly use the
aggregate functions with SELECT statements in the data query
languages.
 Syntax:
 The following are the syntax to use aggregate functions in MySQL:
 function_name (DISTINCT | ALL expression)
 In the above syntax, we had used the following parameters:
 First, we need to specify the name of the aggregate function.
 Second, we use the DISTINCT modifier when we want to calculate
the result based on distinct values or ALL modifiers when we
calculate all values, including duplicates. The default is ALL.
 Third, we need to specify the expression that involves columns and
arithmetic operators.
MYSQL GROUPING
FUNCTIONS
Aggregate Function Descriptions
count() It returns the number of rows, including
rows with NULL values in a group.
sum() It returns the total summed values (Non-
NULL) in a set.
average() It returns the average value of an
expression.
min() It returns the minimum (lowest) value in a
set.
max() It returns the maximum (highest) value in
a set.
groutp_concat() It returns a concatenated string.
first() It returns the first value of an expression.
last() It returns the last value of an expression.
SQL COUNT(), AVG() and
SUM() Functions
 The COUNT() function returns the number of rows that
matches a specified criterion.
COUNT() Syntax
SELECT COUNT(column_name)
FROM table_name WHERE condition;
AVG() Syntax
The AVG() function returns the average value of a numeric
column.
SELECT AVG(column_name)
FROM table_name
WHERE condition;
SUM() Syntax
The SUM() function returns the total sum of a numeric column.
SELECT SUM(column_name)
FROM table_name
WHERE condition;
The SQL UPDATE Statement
 The UPDATE statement is used to
modify the existing records in a table.
 UPDATE Syntax
 UPDATE table_name
SET column1 = value1, column2 = val
ue2, ...
WHERE condition;
UPDATE Multiple Records
 It is the WHERE clause that
determines how many records will be
updated.
 The following SQL statement will
update the ContactName to "Juan" for
all records where country is "Mexico":
Example
 UPDATE Customers
SET ContactName='Juan'
WHERE Country='Mexico';
The SQL DELETE Statement
 The DELETE statement is used to delete existing
records in a table.
DELETE Syntax
 DELETE FROM table_name WHERE condition;
Quetsion:The following SQL statement deletes the
customer "Alfreds Futterkiste" from the "Customers"
table:
Example
DELETE FROM Customers WHERE Custome
rName=‘ Alfreds Futterkiste';
The SQL MIN() and MAX()
Functions
 The MIN() function returns the
smallest value of the selected column.
 The MAX() function returns the largest
value of the selected column.
MIN() Syntax
SELECT MIN(column_name)
FROM table_name
WHERE condition;
MIN() Example and MAX()
Example
 The following SQL statement finds the
price of the cheapest product:
Example
SELECT MIN(Price) AS SmallestPrice
FROM Products;
MAX() Example
 The following SQL statement finds the
price of the most expensive product:
Example
SELECT MAX(Price) AS LargestPrice
FROM Products;
The SQL WHERE Clause
 The WHERE clause is used to filter
records.
 It is used to extract only those records
that fulfill a specified condition.
WHERE Syntax
SELECT column1, column2, ...
FROM table_name
WHERE condition;
Thank you

More Related Content

Similar to unit 1 ppt.pptx

Similar to unit 1 ppt.pptx (20)

2017 biological databasespart2
2017 biological databasespart22017 biological databasespart2
2017 biological databasespart2
 
Sql Basics And Advanced
Sql Basics And AdvancedSql Basics And Advanced
Sql Basics And Advanced
 
SQL (Basic to Intermediate Customized 8 Hours)
SQL (Basic to Intermediate Customized 8 Hours)SQL (Basic to Intermediate Customized 8 Hours)
SQL (Basic to Intermediate Customized 8 Hours)
 
PO WER - Piotr Mariat - Sql
PO WER - Piotr Mariat - SqlPO WER - Piotr Mariat - Sql
PO WER - Piotr Mariat - Sql
 
05 Create and Maintain Databases and Tables.pptx
05 Create and Maintain Databases and Tables.pptx05 Create and Maintain Databases and Tables.pptx
05 Create and Maintain Databases and Tables.pptx
 
Introduction to SQL..pdf
Introduction to SQL..pdfIntroduction to SQL..pdf
Introduction to SQL..pdf
 
Sql intro & ddl 1
Sql intro & ddl 1Sql intro & ddl 1
Sql intro & ddl 1
 
Sql intro & ddl 1
Sql intro & ddl 1Sql intro & ddl 1
Sql intro & ddl 1
 
Module 3
Module 3Module 3
Module 3
 
Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...
Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...
Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...
 
SQL
SQLSQL
SQL
 
2018 02 20_biological_databases_part2_v_upload
2018 02 20_biological_databases_part2_v_upload2018 02 20_biological_databases_part2_v_upload
2018 02 20_biological_databases_part2_v_upload
 
Module02
Module02Module02
Module02
 
12 SQL
12 SQL12 SQL
12 SQL
 
12 SQL
12 SQL12 SQL
12 SQL
 
SQL
SQLSQL
SQL
 
SQL cheat sheet.pdf
SQL cheat sheet.pdfSQL cheat sheet.pdf
SQL cheat sheet.pdf
 
MariaDB Server 10.3 - Temporale Daten und neues zur DB-Kompatibilität
MariaDB Server 10.3 - Temporale Daten und neues zur DB-KompatibilitätMariaDB Server 10.3 - Temporale Daten und neues zur DB-Kompatibilität
MariaDB Server 10.3 - Temporale Daten und neues zur DB-Kompatibilität
 
2.0 sql data types for my sql, sql server
2.0 sql data types for my sql, sql server2.0 sql data types for my sql, sql server
2.0 sql data types for my sql, sql server
 
DBMS Part-3.pptx
DBMS Part-3.pptxDBMS Part-3.pptx
DBMS Part-3.pptx
 

Recently uploaded

Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 

Recently uploaded (20)

Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 

unit 1 ppt.pptx

  • 1. DEPARTMENT OF ELECTRONICS AND COMMUNICATION 18ECE036J - DATABASE MANAGEMENT SYSTEMS UNIT 1 DATA MANAGEMNET AND MODELING 9/20/2022 1
  • 2. SQL  SQL is a standard language for accessing and manipulating databases.  SQL stands for Structured Query Language  SQL lets you access and manipulate databases  SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987
  • 3. What Can SQL do  SQL can execute queries against a database  SQL can retrieve data from a database  SQL can insert records in a database  SQL can update records in a database  SQL can delete records from a database  SQL can create new databases  SQL can create new tables in a database  SQL can create stored procedures in a database  SQL can create views in a database  SQL can set permissions on tables, procedures, and views
  • 4. Using SQL in Your Web Site  To build a web site that shows data from a database, you will need:  An RDBMS database program (i.e. MS Access, SQL Server, MySQL)  To use a server-side scripting language, like PHP or ASP  To use SQL to get the data you want  To use HTML / CSS to style the page
  • 5. RDBMS  RDBMS stands for Relational Database Management System.  RDBMS is the basis for SQL, and for all modern database systems such as MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access.  The data in RDBMS is stored in database objects called tables. A table is a collection of related data entries and it consists of columns and rows.
  • 6. Cont’d  Look at the "Customers" table: SELECT * FROM Customers;  Every table is broken up into smaller entities called fields. The fields in the Customers table consist of CustomerID, CustomerName, ContactName, Address, City, PostalCode and Country. A field is a column in a table that is designed to maintain specific information about every record in the table.  A record, also called a row, is each individual entry that exists in a table. For example, there are 91 records in the above Customers table. A record is a horizontal entity in a table.  A column is a vertical entity in a table that contains all information associated with a specific field in a table.
  • 7. Database Tables  A database most often contains one or more tables. Each table is identified by a name (e.g. "Customers" or "Orders"). Tables contain records (rows) with data.
  • 9. Important SQL Commands  SELECT - extracts data from a database  UPDATE - updates data in a database  DELETE - deletes data from a database  INSERT INTO - inserts new data into a database  CREATE DATABASE - creates a new database  ALTER DATABASE - modifies a database  CREATE TABLE - creates a new table  ALTER TABLE - modifies a table  DROP TABLE - deletes a table  CREATE INDEX - creates an index (search key)  DROP INDEX - deletes an index
  • 10. Rules to Create a Database  First, we need to know the basic rules for creating new DB:  Database names must be unique within an instance of SQL Server.  Database names can be a maximum of 128 characters.  The CREATE DATABASE statement must run in an auto-commit mode.
  • 12. SQL CREATE DATABASE Statement  The CREATE DATABASE statement is used to create a new SQL database.  Syntax CREATE DATABASE databasename; CREATE DATABASE Example  The following SQL statement creates a database called "testDB":  Example  CREATE DATABASE testDB;
  • 13. SQL DROP DATABASE Statement  The DROP DATABASE statement is used to drop an existing SQL database. Syntax  DROP DATABASE databasename;  DROP DATABASE Example  The following SQL statement drops the existing database "testDB": Example  DROP DATABASE testDB;
  • 14. MySQL Data Types  Each column in a database table is required to have a name and a data type.  An SQL developer must decide what type of data that will be stored inside each column when creating a table. The data type is a guideline for SQL to understand what type of data is expected inside of each column, and it also identifies how SQL will interact with the stored data.  In MySQL there are three main data
  • 15. Numeric Data Types Data type Description BIT(size) A bit-value type. The number of bits per value is specified in size. The size parameter can hold a value from 1 to 64. The default value for size is 1. TINYINT(size) A very small integer. Signed range is from -128 to 127. Unsigned range is from 0 to 255. The size parameter specifies the maximum display width (which is 255) BOOL Zero is considered as false, nonzero values are considered as true. BOOLEAN Equal to BOOL SMALLINT(size) A small integer. Signed range is from -32768 to 32767. Unsigned range is from 0 to 65535. The size parameter specifies the maximum display width (which is 255) MEDIUMINT(size) A medium integer. Signed range is from -8388608 to 8388607. Unsigned range is from 0 to 16777215. The size parameter specifies the maximum display width (which is 255)
  • 16. INT(size) A medium integer. Signed range is from - 2147483648 to 2147483647. Unsigned range is from 0 to 4294967295. The size parameter specifies the maximum display width (which is 255) INTEGER(size) Equal to INT(size) BIGINT(size) A large integer. Signed range is from - 9223372036854775808 to 9223372036854775807. Unsigned range is from 0 to 18446744073709551615. The size parameter specifies the maximum display width (which is 255) FLOAT(size, d) A floating point number. The total number of digits is specified in size. The number of digits after the decimal point is specified in the d parameter. This syntax is deprecated in MySQL 8.0.17, and it will be removed in future MySQL versions FLOAT(p) A floating point number. MySQL uses the p value to determine whether to use FLOAT or DOUBLE for the resulting data type. If p is from 0 to 24, the data type becomes FLOAT(). If p is from 25 to 53, the data type becomes DOUBLE() DOUBLE(size, d) A normal-size floating point number. The total number of digits is specified in size. The number of digits after the decimal point is specified in the d parameter DOUBLE PRECISION(size, d) DECIMAL(size, d) An exact fixed-point number. The total number of digits is specified in size. The number of digits after the decimal point is specified in the d parameter. The maximum number for size is 65. The maximum number for d is 30. The default value for size is 10.
  • 17. Date and Time Data Types Data type Description DATE A date. Format: YYYY-MM-DD. The supported range is from '1000-01-01' to '9999-12-31' DATETIME(fsp) A date and time combination. Format: YYYY-MM-DD hh:mm:ss. The supported range is from '1000-01-01 00:00:00' to '9999-12-31 23:59:59'. Adding DEFAULT and ON UPDATE in the column definition to get automatic initialization and updating to the current date and time TIMESTAMP(fsp) A timestamp. TIMESTAMP values are stored as the number of seconds since the Unix epoch ('1970-01-01 00:00:00' UTC). Format: YYYY-MM-DD hh:mm:ss. The supported range is from '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC. Automatic initialization and updating to the current date and time can be specified using DEFAULT CURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP in the column definition TIME(fsp) A time. Format: hh:mm:ss. The supported range is from '- 838:59:59' to '838:59:59' YEAR A year in four-digit format. Values allowed in four-digit format: 1901 to 2155, and 0000. MySQL 8.0 does not support year in two-digit format.
  • 18. String Data Types Data type Description CHAR(size) A FIXED length string (can contain letters, numbers, and special characters). The size parameter specifies the column length in characters - can be from 0 to 255. Default is 1 VARCHAR(size) A VARIABLE length string (can contain letters, numbers, and special characters). The size parameter specifies the maximum column length in characters - can be from 0 to 65535 BINARY(size) Equal to CHAR(), but stores binary byte strings. The size parameter specifies the column length in bytes. Default is 1 VARBINARY(size) Equal to VARCHAR(), but stores binary byte strings. The size parameter specifies the maximum column length in bytes. TINYBLOB For BLOBs (Binary Large OBjects). Max length: 255 bytes TINYTEXT Holds a string with a maximum length of 255 characters
  • 19. BLOB(size) For BLOBs (Binary Large OBjects). Holds up to 65,535 bytes of data MEDIUMTEXT Holds a string with a maximum length of 16,777,215 characters MEDIUMBLOB For BLOBs (Binary Large OBjects). Holds up to 16,777,215 bytes of data LONGTEXT Holds a string with a maximum length of 4,294,967,295 characters LONGBLOB For BLOBs (Binary Large OBjects). Holds up to 4,294,967,295 bytes of data ENUM(val1, val2, val3, ...) A string object that can have only one value, chosen from a list of possible values. You can list up to 65535 values in an ENUM list. If a value is inserted that is not in the list, a blank value will be inserted. The values are sorted in the order you enter them SET(val1, val2, val3, ...) A string object that can have 0 or more values, chosen from a list of possible values. You can list up to 64 values in a SET list
  • 20. DML The SQL INSERT INTO Statement  The INSERT INTO statement is used to insert new records in a table.  INSERT INTO Syntax  It is possible to write the INSERT INTO statement in two ways:  1. Specify both the column names and the values to be inserted: SYNTAX: INSERT INTO table_name (column1, column2, colu mn3, ...) VALUES (value1, value2, value3, ...);
  • 21. CONT’D  2. If you are adding values for all the columns of the table, you do not need to specify the column names in the SQL query. However, make sure the order of the values is in the same order as the columns in the table. Here, the INSERT INTO syntax would be as follows: EXAMPLE: INSERT INTO table_name VALUES (value1, value2, value3, ...);
  • 22. Insert Data Only in Specified Columns  It is also possible to only insert data in specific columns.  The following SQL statement will insert a new record, but only insert data in the "CustomerName", "City", and "Country" columns (CustomerID will be updated automatically): Example INSERT INTO Customers (CustomerName, City,Country) VALUES ('Cardinal', 'Stavanger', 'Nor way');
  • 23. DML-The SQL SELECT Statement  The SELECT statement is used to select data from a database.  The data returned is stored in a result table, called the result-set. SELECT Syntax SELECT column1, column2, ... FROM table_name;
  • 24. SELECT * Example  The following SQL statement selects all the columns from the "Customers" table: Example SELECT * FROM Customers;
  • 25. The SQL SELECT DISTINCT Statement  The SELECT DISTINCT statement is used to return only distinct (different) values.  Inside a table, a column often contains many duplicate values; and sometimes you only want to list the different (distinct) values. SELECT DISTINCT Syntax SELECT DISTINCT column1, column2, ... FROM table_name;
  • 26. EXAMPLE  The following SQL statement selects only the DISTINCT values from the "Country" column in the "Customers" table:  Example  SELECT DISTINCT Country FROM C ustomers;
  • 27. SQL PRIMARY KEY Constraint  The PRIMARY KEY constraint uniquely identifies each record in a table.  Primary keys must contain UNIQUE values, and cannot contain NULL values.  A table can have only ONE primary key; and in the table, this primary key can consist of single or multiple columns (fields). 
  • 28. PRIMARY KEY  The following SQL creates a PRIMARY KEY on the "ID" column when the "Persons" table is created:  MySQL:  CREATE TABLE Persons ( ID int NOT NULL, LastName varchar(255) NOT NULL, FirstName varchar(255), Age int, PRIMARY KEY (ID) );
  • 29. SQL FOREIGN KEY Constraint PersonID LastName FirstName Age 1 Hansen Ola 30 2 Svendson Tove 23 3 Pettersen Kari 20 • The FOREIGN KEY constraint is used to prevent actions that would destroy links between tables. • A FOREIGN KEY is a field (or collection of fields) in one table, that refers to the PRIMARY KEY in another table. • The table with the foreign key is called the child table, and the table with the primary key is called the referenced or parent table. • Look at the following two tables: Persons Table
  • 30. Orders Table  Notice that the "PersonID" column in the "Orders" table points to the "PersonID" column in the "Persons" table.  The "PersonID" column in the "Persons" table is the PRIMARY KEY in the "Persons" table.  The "PersonID" column in the "Orders" table is a FOREIGN KEY in the "Orders" table.  The FOREIGN KEY constraint prevents invalid data from being inserted into the foreign key column, because it has to be one of the values contained in the parent table. OrderID OrderNumb er PersonID 1 77895 3 2 44678 3 3 22456 2 4 24562 1
  • 31. SQL FOREIGN KEY on CREATE TABLE  The following SQL creates a FOREIGN KEY on the "PersonID" column when the "Orders" table is created:  MySQL:  CREATE TABLE Orders ( OrderID int NOT NULL, OrderNumber int NOT NULL, PersonID int, PRIMARY KEY (OrderID), FOREIGN KEY (PersonID) REFEREN CES Persons(PersonID) );
  • 32. SQL FOREIGN KEY on ALTER TABLE  To create a FOREIGN KEY constraint on the "PersonID" column when the "Orders" table is already created, use the following SQL:  MySQL / SQL Server / Oracle / MS Access:  ALTER TABLE Orders ADD FOREIGN KEY (PersonID) REF ERENCES Persons(PersonID);
  • 33. MySQL Aggregate Functions  MySQL's aggregate function is used to perform calculations on multiple values and return the result in a single value like the average of all values, the sum of all values, and maximum & minimum value among certain groups of values. We mostly use the aggregate functions with SELECT statements in the data query languages.  Syntax:  The following are the syntax to use aggregate functions in MySQL:  function_name (DISTINCT | ALL expression)  In the above syntax, we had used the following parameters:  First, we need to specify the name of the aggregate function.  Second, we use the DISTINCT modifier when we want to calculate the result based on distinct values or ALL modifiers when we calculate all values, including duplicates. The default is ALL.  Third, we need to specify the expression that involves columns and arithmetic operators.
  • 34. MYSQL GROUPING FUNCTIONS Aggregate Function Descriptions count() It returns the number of rows, including rows with NULL values in a group. sum() It returns the total summed values (Non- NULL) in a set. average() It returns the average value of an expression. min() It returns the minimum (lowest) value in a set. max() It returns the maximum (highest) value in a set. groutp_concat() It returns a concatenated string. first() It returns the first value of an expression. last() It returns the last value of an expression.
  • 35. SQL COUNT(), AVG() and SUM() Functions  The COUNT() function returns the number of rows that matches a specified criterion. COUNT() Syntax SELECT COUNT(column_name) FROM table_name WHERE condition; AVG() Syntax The AVG() function returns the average value of a numeric column. SELECT AVG(column_name) FROM table_name WHERE condition; SUM() Syntax The SUM() function returns the total sum of a numeric column. SELECT SUM(column_name) FROM table_name WHERE condition;
  • 36. The SQL UPDATE Statement  The UPDATE statement is used to modify the existing records in a table.  UPDATE Syntax  UPDATE table_name SET column1 = value1, column2 = val ue2, ... WHERE condition;
  • 37. UPDATE Multiple Records  It is the WHERE clause that determines how many records will be updated.  The following SQL statement will update the ContactName to "Juan" for all records where country is "Mexico": Example  UPDATE Customers SET ContactName='Juan' WHERE Country='Mexico';
  • 38. The SQL DELETE Statement  The DELETE statement is used to delete existing records in a table. DELETE Syntax  DELETE FROM table_name WHERE condition; Quetsion:The following SQL statement deletes the customer "Alfreds Futterkiste" from the "Customers" table: Example DELETE FROM Customers WHERE Custome rName=‘ Alfreds Futterkiste';
  • 39. The SQL MIN() and MAX() Functions  The MIN() function returns the smallest value of the selected column.  The MAX() function returns the largest value of the selected column. MIN() Syntax SELECT MIN(column_name) FROM table_name WHERE condition;
  • 40. MIN() Example and MAX() Example  The following SQL statement finds the price of the cheapest product: Example SELECT MIN(Price) AS SmallestPrice FROM Products; MAX() Example  The following SQL statement finds the price of the most expensive product: Example SELECT MAX(Price) AS LargestPrice FROM Products;
  • 41. The SQL WHERE Clause  The WHERE clause is used to filter records.  It is used to extract only those records that fulfill a specified condition. WHERE Syntax SELECT column1, column2, ... FROM table_name WHERE condition;