Attributes Describe Entities

If you sell products and enter them into a table with columns for ProductName, Price, and ProductID, each of those headings is an attribute. In each field under those headings, you’d enter the product names, prices, and product IDs, respectively. Each one of the field entries is also an attribute. This makes sense, given that the nontechnical definition of an attribute is that it describes a characteristic or quality of something. Here’s an example of the often-cited Northwinds database. This database includes tables (also called entities by database designers) for Customers, Employees, and Products, among others. The Products table defines the characteristics of each product. These include a product ID, name, supplier ID (used as a foreign key), quantity, and price. Each of these characteristics is an attribute of the table (or entity) named Products. An attribute is a single piece of data in the tuple to which it belongs. Each tuple is a data set that applies to one item. The column names are the attributes of a product, and entries in the columns are also attributes of a product.

Is an Attribute a Field?

Sometimes, the terms “field” and “attribute” are used interchangeably, and for most purposes, they are the same. However, field describes a particular cell in a table found on any row, and attribute describes an entity characteristic in a design sense. In the table above, the ProductName in the second row is Chang. This is a field. When discussing products in general, ProductName is the product’s column. This is the attribute.

Defining Attributes

Attributes are defined in terms of their domain. A domain defines the allowable values that an attribute can contain. This includes its data type, length, values, and other details. For example, the domain for an attribute ProductID might specify a numeric data type. The attribute can be further defined to require a specific length or specify whether an empty or unknown value is allowed.