How to rename a column name in SQL
By Tan Lee Published on Jul 02, 2024 432
To rename a column in SQL, you typically use the ALTER TABLE statement along with the RENAME COLUMN clause.
Here is the basic syntax how rename the column name in sql.
ALTER TABLE table_name RENAME COLUMN old_column_name TO new_column_name;
For example, suppose you have a table called "Customers" with a column named "FullName". To rename this column to "FirstName", you would use the following SQL statement.
ALTER TABLE Customers RENAME COLUMN FullName TO FirstName
After executing this query, the column previously known as "FullName" will now be called "FirstName".
When you rename a column in SQL, the process affects the table schema but not the actual data stored in the column.
- How to Query JSON in SQL Server
- How to modify JSON in SQL Server
- How to set time to 00:00:00 with GETDATE() in SQL
- How to find all the dependencies of a table in SQL Server
- How to Find Objects Referencing a Table in SQL Server
- Case sensitivity in SQL Server
- How to Convert varchar to uniqueidentifier in SQL Server
- How to use GROUP BY in SQL
Categories
Popular Posts
RuangAdmin Template
Nov 13, 2024
11 Things You Didn't Know About Cloudflare
Dec 19, 2024
AdminKit Bootstrap 5 HTML5 UI Kits Template
Nov 17, 2024
Modular Admin Template
Nov 14, 2024