Adjust a column name in-place.
Section: Change schemas safely
Rename a column
sql
sql
ALTER TABLE app_users RENAME COLUMN display_name TO full_name;Explanation
Modern SQLite supports renaming columns directly, which simplifies many migrations.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Change schemas safely
Rebuild a table for complex changes
Canonical pattern for dropping constraints or changing types.
Create a basic table
Define a rowid-backed table with primary key and timestamps.