Auto saved by Logseq

This commit is contained in:
Ryan 2023-06-14 20:12:53 +08:00
parent 9b71470501
commit 2e1e14ae7a

View file

@ -1020,6 +1020,7 @@
- LATER SQL
- purpose and importance of SQL.
- SQL is a transform-oriented language with 2
collapsed:: true
major components: #flashcard
- A DDL for defining database structure.
- Create table
@ -1029,6 +1030,11 @@
- Delete
- update
- Select
- Importance:
- it is non-procedural - you specify what
information you require, rather than how to get it;
- it is essentially free-format.
- easy to learn
- retrieve data from database and formulate queries using SELECT and
- Use compound WHERE conditions.
- Sort query results using ORDER BY.