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 教學簡報
Search
Denix
September 14, 2017
Programming
0
66
Database 教學簡報
CMRDB Workshop - Database
Denix
September 14, 2017
Tweet
Share
More Decks by Denix
See All by Denix
Android_Scalable_Modularized_Testable_Architecture.pdf
denishsieh
0
270
Learning Android
denishsieh
0
47
你所不知道所得分配的事
denishsieh
0
69
Git 教學簡報
denishsieh
0
260
Other Decks in Programming
See All in Programming
Doc Translate - LLMを活用したコードドキュメント自動翻訳VSCode拡張機能
eycjur
0
100
全員アーキテクトで挑む、 巨大で高密度なドメインの紐解き方
agatan
5
7.6k
All(?) About Point Sets
hole
0
210
しっかり学ぶ java.lang.*
nagise
1
410
高単価案件で働くための心構え
nullnull
0
150
Evolving NEWT’s TypeScript Backend for the AI-Driven Era
xpromx
0
160
例外処理を理解して、設計段階からエラーを見つけやすく、起こりにくく #phpconfuk
kajitack
12
6.3k
AIを駆使して新しい技術を効率的に理解する方法
nogu66
1
650
What's New in Web AI?
christianliebel
PRO
0
130
AI 時代だからこそ抑えたい「価値のある」PHP ユニットテストを書く技術 #phpconfuk / phpcon-fukuoka-2025
shogogg
1
580
乱雑なコードの整理から学ぶ設計の初歩
masuda220
PRO
32
14k
Building AI Agents with TypeScript #TSKaigiHokuriku
izumin5210
5
900
Featured
See All Featured
Bash Introduction
62gerente
615
210k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
14k
How to train your dragon (web standard)
notwaldorf
97
6.4k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
Docker and Python
trallard
46
3.7k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
980
Statistics for Hackers
jakevdp
799
230k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.1k
Six Lessons from altMBA
skipperchong
29
4.1k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
249
1.3M
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
10
680
Transcript
CMRDB 靜宜大學行雲者研發基地 DATABASE基礎教學 謝宗翰
2 Agenda ◎資料庫概論 ◎SQL簡介 Ø CRUD ◎動手做更有感覺!
3 資料庫概論
4 儲存與管理資料
5 將卡片排序
6 用電腦管理資料
7 一大堆資料,查詢困難@@
8 資料庫管理系統&資料庫伺服器
9 依照需求使用DB
10 DATABASE
11 表格TABLE
12 查詢表格資料
13 建立其他表格資料
14 要怎麼新增、查詢、修改、 刪除DATA? 使用SQL指令!
15 SQL簡介
16 SQL ◎Structured Query Language Ø 結構化查詢語言 ◎念作「sequel」 ◎與資料庫做溝通 對資料庫做CRUD
Create : 新增 Read : 讀取 Update : 更新 Delete : 刪除
17 CRUD前基本概念
18 資料庫 -> 表格tables
19 表格 -> 欄位(column)
20 表格 -> 列(row) or 紀錄(record)
21 指定一個欄位為primary key 主索引鍵(PK) 絕對不會重複
22 DATA TYPE
23 小憩一下~等等要動手做囉!
24 查詢select(Read) SELECT column FROM table WHERE condition
25 新增insert(Create) INSERT INTO column,… VALUES (val,…)
26 更新update(U) UPDATE table SET column=…[,…] WHERE condition
27 刪除delete(D) DELETE FROM table WHERE condition
28 Q&A