SQL Glossary Terms
SQL Seeker's SQL Terminology Glossary is your quick reference for understanding essential SQL concepts.
New to SQL or need a refresher on key terms? From foundational terms like primary key to advanced topics like index and subquery, this guide provides clear definitions and examples to boost your SQL knowledge.
SQL Terminology Reference Table
Term | Category | Definition | Example |
|---|---|---|---|
Primary Key | Constraints | Unique identifier for a table's rows. |
|
Foreign Key | Constraints | Column linking to another table's primary key. |
|
Index | Indexes | Structure to speed up query performance. |
|
Unique Constraint | Constraints | Ensures column values are unique. |
|
Table | Schema | Structure storing data in rows and columns. |
|
Column | Schema | Field storing a specific data type in a table. |
|
Row | Schema | Single record in a table. |
|
Join | Joins | Combines data from multiple tables. |
|
Subquery | Queries | Nested query within another query. |
|
Aggregate | Aggregates | Function summarizing data, e.g., COUNT, SUM. |
|
Schema | Schema | Database structure defining tables and relationships. |
|
View | Schema | Virtual table based on a query. |
|
Trigger | Automation | Procedure executed on table events. |
|
Transaction | Transactions | Set of operations executed as a unit. |
|
Alias | Queries | Temporary name for a column or table. |
|