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, orprice) and a data type (such asVARCHAR,INTEGER,DATE, etc.). - All rows in the table share the same set of columns, but each row can have different values in those columns.
Nasdanika Models