MySQL tutorial: ALTER SERVER [EN]
top of page
CerebroSQL

MySQL: 

ALTER SERVER

Syntax:
ALTER SERVER server_name
OPTIONS (option [, option] ...)

Alters the server information for server_name, adjusting any of the
options permitted in the CREATE SERVER statement. The corresponding
fields in the mysql.servers table are updated accordingly. This
statement requires the SUPER privilege.

URL: https://dev.mysql.com/doc/refman/8.0/en/alter-server.html

Example

ALTER SERVER s OPTIONS (USER 'sally');

bottom of page