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 (Jia-Huei Ren)
March 16, 2015
Education
0
72
Database Management Concepts
Compound Conditions, Computed Fields, Using Special Operators
Bleu (Jia-Huei Ren)
March 16, 2015
Tweet
Share
More Decks by Bleu (Jia-Huei Ren)
See All by Bleu (Jia-Huei Ren)
Introduction to Convolutional Neural Networks
divjose
0
88
Recently doing-20161110
divjose
0
46
Industry 5.0
divjose
0
240
Big Data
divjose
0
72
Bleu Framework for Hbase & Hadoop
divjose
0
83
Paper discuss : Hadoop & HBase
divjose
1
62
Visualizing social network concepts
divjose
0
86
Determinants of RFID adoption intention: Evidence from Taiwanese retail chains
divjose
0
69
Presetation - SALESPOINT: A Java framework for teaching object-oriented software development
divjose
0
140
Other Decks in Education
See All in Education
Evaluation Methods - Lecture 6 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
740
20241002_Copilotって何?+Power_AutomateのCopilot
ponponmikankan
1
190
1127
cbtlibrary
0
170
1216
cbtlibrary
0
250
Requirements Analysis and Prototyping - Lecture 3 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
850
認知情報科学科_キャリアデザイン_大学院の紹介
yuyakurodou
0
140
Kindleストアで本を探すことの善悪 #Izumo Developers' Guild 第1回 LT大会
totodo713
0
150
1106
cbtlibrary
0
430
CSS3 and Responsive Web Design - Lecture 5 - Web Technologies (1019888BNR)
signer
PRO
1
2.5k
ルクソールとツタンカーメン
masakamayama
1
1.1k
Mathematics used in cryptography around us
herumi
2
370
BrightonSEO, San Diego, CA 2024
mchowning
0
100
Featured
See All Featured
jQuery: Nuts, Bolts and Bling
dougneiner
61
7.5k
Product Roadmaps are Hard
iamctodd
PRO
49
11k
The Power of CSS Pseudo Elements
geoffreycrofte
73
5.4k
Facilitating Awesome Meetings
lara
50
6.1k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.3k
Speed Design
sergeychernyshev
25
670
A better future with KSS
kneath
238
17k
Testing 201, or: Great Expectations
jmmastey
40
7.1k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
44
9.3k
GitHub's CSS Performance
jonrohan
1030
460k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
28
2.1k
It's Worth the Effort
3n
183
28k
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