Database Terminology

Rajon Dey - Sep 18 - - Dev Community

Essential terms and concepts for navigating the world of databases.

Tables, Records, Fields:

Let's start with the basics:

  • Tables: Think of a table as a collection of related data entries, much like a spreadsheet. Each table represents a specific entity, such as customers, orders, or products.
  • Records: Also known as rows, records are individual data entries within a table. Each record contains information about one instance of the entity.
  • Fields: These are the columns in a table, and each field holds a specific piece of data within a record. For example, a "Customer" table might have fields for "Name," "Email," and "Phone Number."

Example:Table: Customers
Database Table


Primary Keys and Foreign Keys:

  • Primary Keys: A primary key is a unique identifier for each record in a table. It ensures that each record can be uniquely identified and retrieved. For example, the "ID" field in the "Customers" table could serve as the primary key.
  • Foreign Keys: A foreign key is a field in one table that links to the primary key of another table. This creates a relationship between the two tables. For instance, an "Orders" table might have a "CustomerID" field that serves as a foreign key, linking each order to a specific customer.

Example: Orders
Database table
In this example, "CustomerID" in the "Orders" table is a foreign key that links to the "ID" field in the "Customers" table.


Schemas and Indexes:

  • Schemas: A schema is the blueprint of a database. It defines how data is organized and structured, including tables, fields, relationships, and other elements. In essence, it's a way to describe the design and layout of your database.
  • Indexes: Indexes are special lookup tables that the database uses to speed up data retrieval. They work like an index in a book, allowing you to quickly find specific information without having to search through every record. Indexes can be created on one or more fields in a table.

Example of an Index:
Suppose you frequently search for customers by their email addresses. You could create an index on the "Email" field in the "Customers" table to make these searches faster.

CREATE INDEX idx_email ON Customers (Email);
Enter fullscreen mode Exit fullscreen mode

Understanding these basic concepts and terminology will give you a solid foundation as you dive deeper into the world of databases.

. . . . . . . . . . . . . . . .
Terabox Video Player