A database column is one of the fundamental building blocks of a relational database table.

  • A column defines a specific attribute or field of the data stored in a table.
  • Each column has a name (like first_name, email, or price) and a data type (such as VARCHAR, INTEGER, DATE, etc.).
  • All rows in the table share the same set of columns, but each row can have different values in those columns.