| CREATE TABLE, ALTER TABLE, DROP, schema, sequence, synonym, computed column | references/01-syntax-ddl.md | DDL syntax reference | |
| SELECT, JOIN, subquery, UNION, INTERSECT, EXCEPT, window function, PIVOT, UNPIVOT, APPLY, OFFSET FETCH, pagination | references/02-syntax-dql.md | DQL / query syntax | |
| INSERT, UPDATE, DELETE, MERGE, OUTPUT clause, upsert | references/03-syntax-dml.md | DML syntax & patterns | |
| CTE, WITH, recursive CTE, anchor member, MAXRECURSION | references/04-ctes.md | CTEs (recursive & non-recursive) | |
| VIEW, indexed view, SCHEMABINDING, partitioned view, WITH CHECK OPTION | references/05-views.md | Views | |
| stored procedure, param sniffing, TVP, output param, EXECUTE AS user, impersonation, security context | references/06-stored-procedures.md | Stored procedures | OPTION RECOMPILE: here for proc-level usage; see also 32 for query-level hint. EXECUTE AS: here for proc context; see also 15 for server/db principals |
| function, scalar UDF, inline TVF, multi-statement TVF, determinism, UDF inlining | references/07-functions.md | User-defined functions | |
| index, clustered, nonclustered, covering index, include columns, fill factor, fragmentation, heap, forwarded record, rebuild, reorganize, B-tree structure | references/08-indexes.md | Index design & maintenance | missing index: here for DMV queries and index design; see also 32 for broader perf diagnostics |
| columnstore, delta store, rowgroup, batch mode, tuple mover, segment elimination | references/09-columnstore-indexes.md | Columnstore indexes | |
| partition, partition function, partition scheme, partition switching, sliding window, STATISTICS_INCREMENTAL | references/10-partitioning.md | Table partitioning | |
| user-defined type, CLR type, table type, alias type, spatial, geometry, geography, sparse column | references/11-custom-data-types.md | Custom data types | |
| CHECK constraint, DEFAULT constraint, UNIQUE constraint, foreign key, cascade, referential integrity, functional constraint, cross-database constraint, cross-schema, computed column index |