I like to know How I can change the name of a field that is already created.
Since I am very new to the manual, I couldn't find it with the manual.
Hi there, take a look at the alter function in the MySQL manual.
Eg.:
alter table TableName change column OldColumnName NewColumName int not null;
Change the tablename column names and the field formate... here set to int not null
Good luck!