top of page


© 2025 by The Clinic. Powered and secured by Wix
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