I am using SQL Server 2008 and Navicat. I need to rename a column in a table using SQL.
ALTER TABLE table_name RENAME COLUMN old_name to new_name;
Or you could just slow-click twice on the column in SQL Management Studio and rename it through the UI...