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
79
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
98
Recently doing-20161110
bleu
0
57
Industry 5.0
bleu
0
260
Big Data
bleu
0
78
Bleu Framework for Hbase & Hadoop
bleu
0
92
Paper discuss : Hadoop & HBase
bleu
1
73
Visualizing social network concepts
bleu
0
92
Determinants of RFID adoption intention: Evidence from Taiwanese retail chains
bleu
0
79
Presetation - SALESPOINT: A Java framework for teaching object-oriented software development
bleu
0
150
Other Decks in Education
See All in Education
栃木県警サイバーセキュリティ研修会2026
nomizone
0
340
【dip】「なりたい自分」に近づくための、「自分と向き合う」小さな振り返り
dip_tech
PRO
0
260
Gitの中身 / 03-a-git-internals
kaityo256
PRO
0
130
Data Representation - Lecture 3 - Information Visualisation (4019538FNR)
signer
PRO
1
2.9k
Padlet opetuksessa
matleenalaakso
12
15k
GitHubによるWebアプリケーションのデプロイ / 07-github-deploy
kaityo256
PRO
1
180
0203
cbtlibrary
0
140
IHLヘルスケアリーダーシップ研究会17期説明資料
ihlhealthcareleadership
0
2k
バージョン管理とは / 01-a-vcs
kaityo256
PRO
1
200
Introduction - Lecture 1 - Advanced Topics in Big Data (4023256FNR)
signer
PRO
2
2.3k
2025-12-19-LT
takesection
0
110
SJRC 2526
cbtlibrary
1
220
Featured
See All Featured
Balancing Empowerment & Direction
lara
5
940
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
122
21k
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
200
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
KATA
mclloyd
PRO
35
15k
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
210
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
64
53k
Typedesign – Prime Four
hannesfritz
42
3k
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
67
37k
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
440
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