how to change the name of column in output tableof sql code example
Example: modify column name in sql
ALTER TABLE `Table Name` MODIFY COLUMN `Column Name` Datatype(Size);
ALTER TABLE `Table Name` MODIFY COLUMN `Column Name` Datatype(Size);