Renames a field in a table.
bool db_rename_field(string tablename, string currentname, string newname)
The function returns TRUE if successful or FALSE otherwise.
// Edit the name of the field "telefon" in mytable
$result = db_rename_field("mytable", "telefon", "Tel./Fax");