A new column changes the structure of your data. It can store more details, track changes, or drive new features. But it must be done without breaking what already works. In SQL, ALTER TABLE is the core command to add a new column. In PostgreSQL, MySQL, and most relational databases, it looks like:
ALTER TABLE users
ADD COLUMN last_login TIMESTAMP;
This creates the column instantly for small tables. For large data sets, you must consider lock time, replication lag, and migration safety. Adding a column with a default value can rewrite entire tables, causing long locks. The safest path is to add a nullable column first, backfill in small batches, and then set constraints.
When naming a new column, keep it unambiguous and consistent with existing schema conventions. Use lowercase, underscores for separation, and avoid reserved keywords. Bad names force extra cognitive load on everyone touching the database.