Skip to content

Commit 29b8f68

Browse files
committed
added table of contents
1 parent 8c0ec3c commit 29b8f68

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

sql-command-summary.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,73 @@
11
# SQL Commands Summary
22

3+
## Table of Contents
4+
5+
- [Data Retrieval](#data-retrieval)
6+
- [SELECT](#1-select)
7+
- [CREATE VIEW](#2-create-view)
8+
- [GROUP BY](#3-group-by)
9+
- [HAVING](#4-having)
10+
- [Data Manipulation](#data-manipulation)
11+
- [INSERT](#5-insert)
12+
- [UPDATE](#6-update)
13+
- [DELETE](#7-delete)
14+
- [Data Definition](#data-definition)
15+
- [CREATE TABLE](#8-create-table)
16+
- [ALTER TABLE](#9-alter-table)
17+
- [DROP TABLE](#10-drop-table)
18+
- [Constraints](#constraints)
19+
- [PRIMARY KEY](#11-primary-key)
20+
- [FOREIGN KEY](#12-foreign-key)
21+
- [UNIQUE](#13-unique)
22+
- [CHECK](#14-check)
23+
- [NOT NULL](#15-not-null)
24+
- [Transactions](#transactions)
25+
- [SAVEPOINT](#16-savepoint)
26+
- [ROLLBACK](#17-rollback)
27+
- [COMMIT](#18-commit)
28+
- [User Management](#user-management)
29+
- [CREATE USER](#19-create-user)
30+
- [GRANT](#20-grant)
31+
- [DROP USER](#21-drop-user)
32+
- [ALTER USER](#22-alter-user)
33+
- [Sequences](#sequences)
34+
- [CREATE SEQUENCE](#23-create-sequence)
35+
- [NEXTVAL / CURRVAL](#24-nextval--currval)
36+
- [ALTER SEQUENCE](#25-alter-sequence)
37+
- [Views](#views)
38+
- [CREATE OR REPLACE VIEW](#26-create-or-replace-view)
39+
- [WITH READ ONLY](#27-with-read-only)
40+
- [WITH CHECK OPTION](#28-with-check-option)
41+
- [FORCE VIEW](#29-force-view)
42+
- [String Functions](#string-functions)
43+
- [SUBSTR](#30-substr)
44+
- [UPPER / LOWER / INITCAP](#31-upper--lower--initcap)
45+
- [REPLACE](#32-replace)
46+
- [LPAD / RPAD](#33-lpad--rpad)
47+
- [LTRIM / RTRIM](#34-ltrim--rtrim)
48+
- [LENGTH](#35-length)
49+
- [Mathematical Functions](#mathematical-functions)
50+
- [MOD](#36-mod)
51+
- [POWER](#37-power)
52+
- [ABS / CEIL / FLOOR](#38-abs--ceil--floor)
53+
- [ROUND](#39-round)
54+
- [Date Functions](#date-functions)
55+
- [ADD_MONTHS](#40-add_months)
56+
- [LAST_DAY](#41-last_day)
57+
- [MONTHS_BETWEEN](#42-months_between)
58+
- [INTERVAL](#43-interval)
59+
- [TO_CHAR](#44-to_char)
60+
- [Miscellaneous](#miscellaneous)
61+
- [IS NULL / IS NOT NULL](#45-is-null--is-not-null)
62+
- [NVL](#46-nvl)
63+
- [NVL2](#47-nvl2)
64+
- [SPOOL](#48-spool)
65+
- [COUNT](#49-count)
66+
- [MAX / MIN / AVG / SUM](#50-max--min--avg--sum)
67+
- [ORDER BY](#51-order-by)
68+
- [LIKE](#52-like)
69+
- [JOIN](#53-join)
70+
371
## Data Retrieval
472

573
### 1. SELECT

0 commit comments

Comments
 (0)