Answers for "How can I change the name of a column in my query results"

SQL
0

change column name in mysql

ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);
Posted by: Guest on August-19-2020

Code answers related to "How can I change the name of a column in my query results"

Code answers related to "SQL"

Browse Popular Code Answers by Language