ALTER CONVERSIONSection: SQL Commands (7)Updated: 2003-11-02 |
ALTER CONVERSIONSection: SQL Commands (7)Updated: 2003-11-02 |
ALTER CONVERSION name RENAME TO newname
ALTER CONVERSION changes the definition of a conversion. The only currently available functionality is to rename the conversion.
To rename the conversion iso_8859_1_to_utf_8 to latin1_to_unicode:
ALTER CONVERSION iso_8859_1_to_utf_8 RENAME TO latin1_to_unicode;
There is no ALTER CONVERSION statement in the SQL standard.