8 lines
164 B
MySQL
8 lines
164 B
MySQL
|
-- https://dev.mysql.com/doc/refman/5.7/en/drop-server.html
|
||
|
|
||
|
-- DROP SERVER [ IF EXISTS ] server_name
|
||
|
|
||
|
|
||
|
DROP SERVER IF EXISTS server_name;
|
||
|
DROP SERVER server_name;
|