SlideShare uma empresa Scribd logo
1 de 142
Baixar para ler offline
SQL Success
Chapter 2 slides
Stéphane Faroult

1
ALPHA
2
Don Chamberlin
with Ray Boyce (+ 1974)

3
select ...

4
select ...
from ...

5
select ...
from ...
where ...
6
QUEL
Michael
Stonebraker

7
range of e is employee
retrieve (comp = e.salary / (e.age - 18))
where e.name = "Jones"

QUEL
Michael
Stonebraker

8
Movies
| Movieid |
Title
| Country | Year_Released
-------------------------------------------------------------------P.
IN
|
|
|
| > 1985

QBE
Moshe Zloof
9
Oates

Ellison
Miner
10
components
11
CREATE

Data Definition Language
12
ALTER

Data Definition Language
13
DROP

Data Definition Language
14
id
1
2
3
4
5
6

INSERT
title

title
Casablanca
Blade Runner
On The Waterfront
Lawrence Of Arabia
Annie Hall
Goodfellas

country
us
us
us
uk
us
us

year_released
1942
1982
1954
1962
1977
1990

Data Manipulation Language
15
id
1
2
3
4
5
6
7
8
9
10
11
12

INSERT
title

country
title
Casablanca
us
Blade Runner
us
On The Waterfront
us
Lawrence Of Arabia
uk
Annie Hall
us
Goodfellas
us
The Third Man
uk
Citizen Kane
us
Bicycle Thieves
it
The Battleship Potemkin ru
Sholay
in
A Better Tomorrow
hk

year_released
1942
1982
1954
1962
1977
1990
1949
1941
1948
1925
1975
1986

Data Manipulation Language
16
UPDATE
id
1
2
3
4
5
6
7
8
9
10
11
12

title
country
Casablanca
us
Blade Runner
us
On The Waterfront
us
Lawrence Of Arabia
uk
gb
Annie Hall
us
Goodfellas
us
The Third Man
uk
gb
Citizen Kane
us
Bicycle Thieves
it
The Battleship Potemkin ru
Sholay
in
A Better Tomorrow
hk

year_released
1942
1982
1954
1962
1977
1990
1949
1941
1948
1925
1975
1986

Data Manipulation Language
17
DELETE
id
1
2
3
4
5
6
7
8
9
10
11
12

title
country
Casablanca
us
Blade Runner
us
On The Waterfront
us
Lawrence Of Arabia
gb
Annie Hall
us
Goodfellas
us
The Third Man
gb
Citizen Kane
us
Bicycle Thieves
it
The Battleship Potemkin ru
Sholay
in
A Better Tomorrow
hk

year_released
1942
1982
1954
1962
1977
1990
1949
1941
1948
1925
1975
1986

Data Manipulation Language
18
SELECT
id
1
2
3
4

title
Casablanca
Blade Runner
On The Waterfront
Lawrence Of Arabia

country
us
us
us
gb

6
7
8
9
10
11
12

Goodfellas
The Third Man
Citizen Kane
Bicycle Thieves
The Battleship Potemkin
Sholay
A Better Tomorrow

us
gb
us
it
ru
in
hk

year_released
1942
1982
1954
1962
1990
1949
1941
1948
1925
1975
1986
19
20
EMEA Survey, Evans Data, 2011
21
EMEA Survey, Evans Data, 2011
22
EMEA Survey, Evans Data, 2011
23
24
25
26
27
28
Flickr: Jeff Kramer
29
Client

DBMS

30
Client

DBMS

31
DBMS

32
DBMS

33
DBMS

34
DBMS

35
Client

36
ECHO

22

21

7

SSH

FTP

23

25

88

110

80

143

37
ECHO

22

21

7

SSH

FTP

23

25

88

110

80

143

38
ECHO

22

21

7

SSH

FTP

23

25

88

110

80

143

39
ECHO

22

21

7

SSH

FTP

23

25

88

110

80

143

40
$ mysql --user=donald --host=atlas --port=3306

41
$ mysql --user=donald --host=atlas --port=3306
$ psql --username donald --host atlas --port 5432

42
$ mysql --user=donald --host=atlas --port=3306
$ psql --username donald --host atlas --port 5432
$ sqlplus donald@//atlas:1521/ORCL

43
$ mysql --user=donald --host=atlas --port=3306
$ psql --username donald --host atlas --port 5432
$ sqlplus donald@//atlas:1521/ORCL
$ clpplus donald@//atlas:50000/DB2

44
$ mysql --user=donald --host=atlas --port=3306
$ psql --username donald --host atlas --port 5432
$ sqlplus donald@//atlas:1521/ORCL
$ clpplus donald@//atlas:50000/DB2

Database Engine
ATLASSQLEXPRESS
SQL Server Authentication
donald

45
create table table_name

46
create table table_name
(

,
,

)

47
cReaTE tABle table_name
(

,
,

)

48
tablename

=

TABLENAME

=

tABleNamE
49
4ME

50
4ME

51
4ME
MY_TABLE2

52
4ME
MY_TABLE2
MY TABLE
53
4ME
MY_TABLE2
MY TABLE
54
create table table_name
(column_name

,
,

)

55
create table table_name
(column_name
datatype ,
,

)

56
Text

57
Text
Number

58
Text
Number
Date

59
Text
Number
Date

Binary
60
Text
Number
Date

Binary
61
Text datatypes
char(length)
char
62
Text datatypes
char(length)
char(1)
63
Text datatypes
char(length)
varchar(max length)
varchar2(max length)
64
Text datatypes
char(length)
varchar(max length)

clob
65
Number datatypes
int

66
Number datatypes
int
float

67
Number datatypes
int
float

numeric
number
68
Number datatypes
int
float

numeric (precision)
69
Number datatypes
int
float

numeric (precision)

999999 99
70
Number datatypes
int
float

numeric (precision,

scale)

999999 99
71
Number datatypes
int
float

numeric (precision,

scale)

999999. 99
72
Date datatypes
datetime
date

73
Date datatypes
datetime
timestamp

74
Binary datatypes
varbinary(max length)

75
Binary datatypes
varbinary(max length)
blob

76
create table people ( peopleid
first_name
surname
born
died

number,
varchar2(30),
varchar2(30),
number(4),
number(4 ))

77
create table people ( peopleid
first_name
surname
born
died

int,
varchar(30),
varchar(30),
numeric(4),
numeric(4 ))

78
Flickr:Daniel Moyle

79
create table people (peopleid
first_name
surname
born
died

int ,
varchar(30),
varchar(30) ,
numeric(4),
numeric(4 ))

80
create table people (peopleid
first_name
surname
born
died

int not null,
varchar(30),
varchar(30) ,
numeric(4),
numeric(4 ))

81
create table people (peopleid
first_name
surname
born
died

int not null,
varchar(30),
varchar(30) not null,
numeric(4),
numeric(4 ))

82
create table people (peopleid
first_name
surname
born
died

int not null,
varchar(30),
varchar(30) not null,
numeric(4),
numeric(4 ))

83
create table people (peopleid
first_name
surname
born
died

int not null,
varchar(30),
varchar(30) not null,
numeric(4),
numeric(4 ))

84
85
86
comment on column people.surname is 'Surname or stage name';

-- comments in an SQL statement start with a double dash

87
comment on column people.surname is 'Surname or stage name';

-- comments in an SQL statement start with a double dash

88
comment on column people.surname is 'Surname or stage name';

-- comments in an SQL statement start with a double dash

89
create table people (peopleid
first_name
surname
born
died

int not null,
varchar(30),
varchar(30) not null,
numeric(4),
numeric(4 ))

45
90
No woman should ever be quite accurate
about her age. It looks so calculating.
Oscar Wilde
The Importance of Being Earnest.

91
create table people (peopleid
first_name
surname
born
died

int not null,
varchar(30),
varchar(30) not null,
numeric(4) , not null,
numeric(4 ))

92
Picture
Surname Firstname Birthdate
Hepburn

Audrey

4-May-1929

93
Picture
Surname Firstname Birthdate
Hepburn

Audrey

4-May-1929

Hepburn

Audrey

4-May-1929
94
Picture
Surname Firstname Birthdate
Hepburn

Audrey

4-May-1929

Hepburn

Audrey

4-May-1929
95
96
97
CONSTRAINTS
98
create table people (peopleid
first_name
surname
born
died

int not null,
varchar(30),
varchar(30) not null,
numeric(4) not null,
numeric(4))

99
int not null,
primary key,
first_name varchar(30),
surname
varchar(30) not null,
born
numeric(4) not null,
died
numeric(4))

create table people (peopleid

100
create table people (peopleid

int not null
primary key,
first_name varchar(30),
surname
varchar(30) not null,
born
numeric(4) not null,
died
numeric(4))

101
create table people (peopleid

int not null
primary key,
first_name varchar(30),
surname
varchar(30) not null,
born
numeric(4) not null,
died
numeric(4) ,
unique (first_name, surname))

102
For Oracle, PostgreSQL and DB2 ...

'audrey'
'AUDREY'
'Audrey'
103
For Oracle, PostgreSQL and DB2 ...

'audrey'
'AUDREY'
'Audrey'
... not for SQL Server, MySQL or SQLite ...

104
create table people (peopleid

int not null
primary key,
first_name varchar(30),
surname
varchar(30) not null,
born
numeric(4) not null,
died
numeric(4),
unique (first_name, surname))

105
create table people (peopleid

int not null
primary key,
first_name varchar(30),
check (first_name = upper(first_name)),
surname
varchar(30) not null,
check (surname = upper(surname)),
born
numeric(4) not null,
died
numeric(4),
unique (first_name, surname))

106
Chris Date

Picture: Douglas Robertson

107
Chris Date

Picture: Douglas Robertson

108
create table movies (movieid
int not null primary key,
title
varchar(60) not null,
country
char(2) not null,
year_released numeric(4) not null
check(year_released >= 1895),
unique (title, country, year_released))

109
COUNTRIES
country_code country_name

continent

us

United States

AMERICA

cn

China

ASIA

in

India

ASIA

br

Brazil

AMERICA

uk

United Kingdom

EUROPE

ru

Russia

EUROPE

mx

Mexico

AMERICA

it

Italy

EUROPE

de

Germany

EUROPE
110
COUNTRIES
country_code country_name

continent

us

United States

AMERICA

cn

China

ASIA

in

India

ASIA

br

Brazil

AMERICA

uk

United Kingdom

EUROPE

ru

Russia

EUROPE

mx

Mexico

AMERICA

it

Italy

EUROPE

de

Germany

EUROPE
111
create table movies (movieid
int not null primary key,
title
varchar(60) not null,
country
char(2) not null,
year_released numeric(4) not null
check(year_released >= 1895),
unique (title, country, year_released)
foreign key(country)
references countries(country_code))

112
credits

113
movies

credits

114
people

movies

credits

115
people

movies

credits

116
117
PROGRAM
118
PROGRAM

119
Prepare
the background

120
INSERT
SOME_TABLE
column1

column2

121
INSERT
SOME_TABLE
column1

column2

122
INSERT
SOME_TABLE
column1

column2

123
insert into table_name
(list of columns)
values (list of values)

124
insert into countries(country_code,
country_name, continent)
values('us', 'United States', 'AMERICA')

125
Reminder
Hello World

126
Reminder
HELLO WORLD

127
select * from countries

128
select * from countries

129
1960

130
insert into movies(movieid,
title,
country,
year_released)
values (123,
'L''Avventura',
'it',
1960)
131
insert into movies(movieid,
title,
country,
year_released)
values (123,
'L''Avventura',
''
'it',
1960)
132
Entering
a date?

Flickr: Jason Dgreat

133
to_date(
'07/20/1969'
,
'MM/DD/YYYY')

134
SYSDATE

135
SYSDATE
CURDATE()

136
SYSDATE
CURDATE()
GETDATE()
137
FLickr:Steve Jurvetson

138
SQL : THE database language.

139
SQL : THE database language.
Connection : server, port, database, username,
password.

140
SQL : THE database language.
Connection : server, port, database, username,
password.
Create table: data types + constraints.

141
SQL : THE database language.
Connection : server, port, database, username,
password.
Create table: data types + constraints.
Keywords and identifiers: not case-sensitive
Data : can be CASE-SENSITIVE

142

Mais conteúdo relacionado

Mais procurados

Open course(programming languages) 20150121
Open course(programming languages) 20150121Open course(programming languages) 20150121
Open course(programming languages) 20150121JangChulho
 
Just in time (series) - KairosDB
Just in time (series) - KairosDBJust in time (series) - KairosDB
Just in time (series) - KairosDBVictor Anjos
 
Lecture2 mysql by okello erick
Lecture2 mysql by okello erickLecture2 mysql by okello erick
Lecture2 mysql by okello erickokelloerick
 
[1062BPY12001] Data analysis with R / week 4
[1062BPY12001] Data analysis with R / week 4[1062BPY12001] Data analysis with R / week 4
[1062BPY12001] Data analysis with R / week 4Kevin Chun-Hsien Hsu
 
SQL WORKSHOP::Lecture 4
SQL WORKSHOP::Lecture 4SQL WORKSHOP::Lecture 4
SQL WORKSHOP::Lecture 4Umair Amjad
 
My sql statements by okello erick
My sql statements by okello erickMy sql statements by okello erick
My sql statements by okello erickokelloerick
 
Practice 1
Practice 1Practice 1
Practice 1nonamela
 
Introduction to Search Systems - ScaleConf Colombia 2017
Introduction to Search Systems - ScaleConf Colombia 2017Introduction to Search Systems - ScaleConf Colombia 2017
Introduction to Search Systems - ScaleConf Colombia 2017Toria Gibbs
 
A Search Index is Not a Database Index - Full Stack Toronto 2017
A Search Index is Not a Database Index - Full Stack Toronto 2017A Search Index is Not a Database Index - Full Stack Toronto 2017
A Search Index is Not a Database Index - Full Stack Toronto 2017Toria Gibbs
 

Mais procurados (11)

Open course(programming languages) 20150121
Open course(programming languages) 20150121Open course(programming languages) 20150121
Open course(programming languages) 20150121
 
Just in time (series) - KairosDB
Just in time (series) - KairosDBJust in time (series) - KairosDB
Just in time (series) - KairosDB
 
Lecture2 mysql by okello erick
Lecture2 mysql by okello erickLecture2 mysql by okello erick
Lecture2 mysql by okello erick
 
Intro to my sql
Intro to my sqlIntro to my sql
Intro to my sql
 
[1062BPY12001] Data analysis with R / week 4
[1062BPY12001] Data analysis with R / week 4[1062BPY12001] Data analysis with R / week 4
[1062BPY12001] Data analysis with R / week 4
 
介绍 MySQL
介绍 MySQL介绍 MySQL
介绍 MySQL
 
SQL WORKSHOP::Lecture 4
SQL WORKSHOP::Lecture 4SQL WORKSHOP::Lecture 4
SQL WORKSHOP::Lecture 4
 
My sql statements by okello erick
My sql statements by okello erickMy sql statements by okello erick
My sql statements by okello erick
 
Practice 1
Practice 1Practice 1
Practice 1
 
Introduction to Search Systems - ScaleConf Colombia 2017
Introduction to Search Systems - ScaleConf Colombia 2017Introduction to Search Systems - ScaleConf Colombia 2017
Introduction to Search Systems - ScaleConf Colombia 2017
 
A Search Index is Not a Database Index - Full Stack Toronto 2017
A Search Index is Not a Database Index - Full Stack Toronto 2017A Search Index is Not a Database Index - Full Stack Toronto 2017
A Search Index is Not a Database Index - Full Stack Toronto 2017
 

Semelhante a Sql success ch02

create foreign key constraints for the appropriate tables in your Chic.docx
create foreign key constraints for the appropriate tables in your Chic.docxcreate foreign key constraints for the appropriate tables in your Chic.docx
create foreign key constraints for the appropriate tables in your Chic.docxCharlesXMLAllano
 
SQL Database Design & Querying
SQL Database Design & QueryingSQL Database Design & Querying
SQL Database Design & QueryingCobain Schofield
 
JCON 2023 - Performing database migrations without overtime
JCON 2023 - Performing database migrations without overtimeJCON 2023 - Performing database migrations without overtime
JCON 2023 - Performing database migrations without overtimePieter Vincken
 
mysql-Tutorial with Query presentation.ppt
mysql-Tutorial with Query presentation.pptmysql-Tutorial with Query presentation.ppt
mysql-Tutorial with Query presentation.pptaptechaligarh
 
«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»
«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»
«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»Olga Lavrentieva
 
Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...
Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...
Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...DevOpsDays Tel Aviv
 
Cassandra Summit 2014: CQL Under the Hood
Cassandra Summit 2014: CQL Under the HoodCassandra Summit 2014: CQL Under the Hood
Cassandra Summit 2014: CQL Under the HoodDataStax Academy
 
Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Paige Bailey
 
Sql success ch03
Sql success ch03Sql success ch03
Sql success ch03roughsea
 

Semelhante a Sql success ch02 (11)

create foreign key constraints for the appropriate tables in your Chic.docx
create foreign key constraints for the appropriate tables in your Chic.docxcreate foreign key constraints for the appropriate tables in your Chic.docx
create foreign key constraints for the appropriate tables in your Chic.docx
 
SQL Database Design & Querying
SQL Database Design & QueryingSQL Database Design & Querying
SQL Database Design & Querying
 
JCON 2023 - Performing database migrations without overtime
JCON 2023 - Performing database migrations without overtimeJCON 2023 - Performing database migrations without overtime
JCON 2023 - Performing database migrations without overtime
 
mysql-Tutorial with Query presentation.ppt
mysql-Tutorial with Query presentation.pptmysql-Tutorial with Query presentation.ppt
mysql-Tutorial with Query presentation.ppt
 
Intro to my sql
Intro to my sqlIntro to my sql
Intro to my sql
 
«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»
«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»
«Cassandra data modeling – моделирование данных для NoSQL СУБД Cassandra»
 
Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...
Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...
Massively Distributed Backups at Facebook Scale - Shlomo Priymak, Facebook - ...
 
CQL Under the Hood
CQL Under the HoodCQL Under the Hood
CQL Under the Hood
 
Cassandra Summit 2014: CQL Under the Hood
Cassandra Summit 2014: CQL Under the HoodCassandra Summit 2014: CQL Under the Hood
Cassandra Summit 2014: CQL Under the Hood
 
Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!
 
Sql success ch03
Sql success ch03Sql success ch03
Sql success ch03
 

Último

How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17Celine George
 
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptxSandy Millin
 
10 Topics For MBA Project Report [HR].pdf
10 Topics For MBA Project Report [HR].pdf10 Topics For MBA Project Report [HR].pdf
10 Topics For MBA Project Report [HR].pdfJayanti Pande
 
Slides CapTechTalks Webinar March 2024 Joshua Sinai.pptx
Slides CapTechTalks Webinar March 2024 Joshua Sinai.pptxSlides CapTechTalks Webinar March 2024 Joshua Sinai.pptx
Slides CapTechTalks Webinar March 2024 Joshua Sinai.pptxCapitolTechU
 
Department of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdfDepartment of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdfMohonDas
 
Education and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptxEducation and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptxraviapr7
 
CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...
CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...
CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...Nguyen Thanh Tu Collection
 
How to Send Emails From Odoo 17 Using Code
How to Send Emails From Odoo 17 Using CodeHow to Send Emails From Odoo 17 Using Code
How to Send Emails From Odoo 17 Using CodeCeline George
 
3.21.24 The Origins of Black Power.pptx
3.21.24  The Origins of Black Power.pptx3.21.24  The Origins of Black Power.pptx
3.21.24 The Origins of Black Power.pptxmary850239
 
Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.EnglishCEIPdeSigeiro
 
Ultra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxUltra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxDr. Asif Anas
 
A gentle introduction to Artificial Intelligence
A gentle introduction to Artificial IntelligenceA gentle introduction to Artificial Intelligence
A gentle introduction to Artificial IntelligenceApostolos Syropoulos
 
Drug Information Services- DIC and Sources.
Drug Information Services- DIC and Sources.Drug Information Services- DIC and Sources.
Drug Information Services- DIC and Sources.raviapr7
 
Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...raviapr7
 
Work Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sashaWork Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sashasashalaycock03
 
How to Solve Singleton Error in the Odoo 17
How to Solve Singleton Error in the  Odoo 17How to Solve Singleton Error in the  Odoo 17
How to Solve Singleton Error in the Odoo 17Celine George
 
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxheathfieldcps1
 
5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...CaraSkikne1
 

Último (20)

How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17How to Add Existing Field in One2Many Tree View in Odoo 17
How to Add Existing Field in One2Many Tree View in Odoo 17
 
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
2024.03.23 What do successful readers do - Sandy Millin for PARK.pptx
 
Prelims of Kant get Marx 2.0: a general politics quiz
Prelims of Kant get Marx 2.0: a general politics quizPrelims of Kant get Marx 2.0: a general politics quiz
Prelims of Kant get Marx 2.0: a general politics quiz
 
10 Topics For MBA Project Report [HR].pdf
10 Topics For MBA Project Report [HR].pdf10 Topics For MBA Project Report [HR].pdf
10 Topics For MBA Project Report [HR].pdf
 
Slides CapTechTalks Webinar March 2024 Joshua Sinai.pptx
Slides CapTechTalks Webinar March 2024 Joshua Sinai.pptxSlides CapTechTalks Webinar March 2024 Joshua Sinai.pptx
Slides CapTechTalks Webinar March 2024 Joshua Sinai.pptx
 
Department of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdfDepartment of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdf
 
Education and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptxEducation and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptx
 
CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...
CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...
CHUYÊN ĐỀ DẠY THÊM TIẾNG ANH LỚP 11 - GLOBAL SUCCESS - NĂM HỌC 2023-2024 - HK...
 
How to Send Emails From Odoo 17 Using Code
How to Send Emails From Odoo 17 Using CodeHow to Send Emails From Odoo 17 Using Code
How to Send Emails From Odoo 17 Using Code
 
3.21.24 The Origins of Black Power.pptx
3.21.24  The Origins of Black Power.pptx3.21.24  The Origins of Black Power.pptx
3.21.24 The Origins of Black Power.pptx
 
Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.
 
Ultra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxUltra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptx
 
A gentle introduction to Artificial Intelligence
A gentle introduction to Artificial IntelligenceA gentle introduction to Artificial Intelligence
A gentle introduction to Artificial Intelligence
 
Drug Information Services- DIC and Sources.
Drug Information Services- DIC and Sources.Drug Information Services- DIC and Sources.
Drug Information Services- DIC and Sources.
 
Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...
 
Work Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sashaWork Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sasha
 
How to Solve Singleton Error in the Odoo 17
How to Solve Singleton Error in the  Odoo 17How to Solve Singleton Error in the  Odoo 17
How to Solve Singleton Error in the Odoo 17
 
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
 
5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...5 charts on South Africa as a source country for international student recrui...
5 charts on South Africa as a source country for international student recrui...
 
Personal Resilience in Project Management 2 - TV Edit 1a.pdf
Personal Resilience in Project Management 2 - TV Edit 1a.pdfPersonal Resilience in Project Management 2 - TV Edit 1a.pdf
Personal Resilience in Project Management 2 - TV Edit 1a.pdf
 

Sql success ch02