DROP SERVER
DROP SERVER [IF EXISTS] serverThis statement can be used with the FEDERATED storage
engine to delete a given server that is created with
CREATE SERVER. The IF EXISTS
flag may be given to prevent an error from being generated if
the server does not exist. Any tables created with a
CONNECTION to a FEDERATED server will not be
dropped or altered as a result of this statement. See the CREATE SERVER statement explanation earlier in this chapter
for more information on this topic. This statement was introduced in
version 5.1.15 of MySQL and requires SUPER
privileges:
DROP SERVER server1;