how to change the column name of a table in sql code example
Example: change name of colum in sql table
ALTER TABLE "table_name" RENAME COLUMN "column 1" TO "column 2";
ALTER TABLE "table_name" RENAME COLUMN "column 1" TO "column 2";