Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Database Management Concepts
Search
Bleu Ren
March 16, 2015
Education
0
77
Database Management Concepts
Compound Conditions, Computed Fields, Using Special Operators
Bleu Ren
March 16, 2015
Tweet
Share
More Decks by Bleu Ren
See All by Bleu Ren
Introduction to Convolutional Neural Networks
bleu
0
94
Recently doing-20161110
bleu
0
51
Industry 5.0
bleu
0
250
Big Data
bleu
0
76
Bleu Framework for Hbase & Hadoop
bleu
0
88
Paper discuss : Hadoop & HBase
bleu
1
70
Visualizing social network concepts
bleu
0
90
Determinants of RFID adoption intention: Evidence from Taiwanese retail chains
bleu
0
75
Presetation - SALESPOINT: A Java framework for teaching object-oriented software development
bleu
0
140
Other Decks in Education
See All in Education
Gaps in Therapy in IBD - IBDInnovate 2025 CCF
higgi13425
0
510
America and the World
oripsolob
0
520
【品女100周年企画】Pitch Deck
shinagawajoshigakuin_100th
0
4k
Implicit and Cross-Device Interaction - Lecture 10 - Next Generation User Interfaces (4018166FNR)
signer
PRO
2
1.7k
Alumnote inc. Company Deck
yukinumata
0
860
Data Physicalisation - Lecture 9 - Next Generation User Interfaces (4018166FNR)
signer
PRO
0
460
American Airlines® USA Contact Numbers: The Ultimate 2025 Guide
lievliev
0
240
The Art of Note Taking
kanaya
1
150
バックオフィス組織にも「チームトポロジー」の考えが使えるかもしれない!!
masakiokuda
0
110
GitHubとAzureを使って開発者になろう
ymd65536
1
140
2025年度春学期 統計学 第2回 統計資料の収集と読み方(講義後配付用) (2025. 4. 17)
akiraasano
PRO
0
120
Common STIs in London: Symptoms, Risks & Prevention
medicaldental
0
140
Featured
See All Featured
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.9k
A designer walks into a library…
pauljervisheath
207
24k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
The Cost Of JavaScript in 2023
addyosmani
51
8.7k
Become a Pro
speakerdeck
PRO
29
5.4k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
What's in a price? How to price your products and services
michaelherold
246
12k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
For a Future-Friendly Web
brad_frost
179
9.8k
Balancing Empowerment & Direction
lara
1
510
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
283
13k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Transcript
Database Management Concepts 49941131 Jia-Huei, Ren
Topic • Compound Conditions • Computed Fields • Using Special
Operators
Topic • Compound Conditions • Computed Fields • Using Special
Operators
Topic • Compound Conditions • Computed Fields • Using Special
Operators
Compound Conditions 5
AND vs. OR
NOT Reverses the truth or falsity of the original condition
BETWEEN Value must be between the listed numbers
Compound Conditions (continued) FIGURE 3-16: Query results FIGURE 3-15: Compound
condition that uses the AND operator 9
Compound Conditions (continued) FIGURE 3-18: Query results FIGURE 3-17: Compound
condition that uses the OR operator 10
Computed Fields Computed field or calculated field Field whose values
you derive from existing fields Can involve: Addition (+) Subtraction (-) Multiplication (*) Division (/) 11
Computed Fields (continued) FIGURE 3-26: Query results FIGURE 3-25: SQL
query with a computed field and condition 12
Using Special Operators
Wildcards in Access SQL
Asterisk : * any collection of characters
Question mark : ? any individual character
Wildcards in Access SQL
Same?
Same?
Percent sign : % any collection of characters
Underscore : _ any individual character
To use a wildcard, include the LIKE operator in the
WHERE clause
IN operator provides a concise way of phrasing certain conditions
Using Special Operators (LIKE and IN) (continued) FIGURE 3-28: Query
results FIGURE 3-27: SQL query with a LIKE operator 24
Using Special Operators (LIKE and IN) (continued) FIGURE 3-30: Query
results FIGURE 3-29: SQL query with an IN operator 25
Thanks