top of page
CerebroSQL

ALTER SERVER

База данных: MySQL

68747470733a2f2f7374796c65732e7265646469746d656469612e636f6d2f74355f32716d366b2f7374796c65

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