Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/alter-server.html
                                 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. For example, to update the USER option: ALTER SERVER s OPTIONS (USER ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/binlog.html
                                To execute BINLOG statements when applying mysqlbinlog output, a user account requires the BINLOG_ADMIN privilege (or the deprecated SUPER privilege), or the REPLICATION_APPLIER privilege plus the appropriate privileges to execute each log event. It ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/create-function.html
                                 The CREATE FUNCTION statement is used to create stored functions and loadable functions: For information about creating stored functions, see Section 15.1.17, “CREATE PROCEDURE and CREATE FUNCTION Statements”. For information about creating ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/declare.html
                                 The DECLARE statement is used to define various items local to a program: Local variables. END compound statement and must be at its start, before any other statements. Variable and condition declarations must appear before cursor or handler ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/describe.html
                                 The DESCRIBE and EXPLAIN statements are synonyms, used either to obtain information about table structure or query execution plans. For more information, see Section 15.7.7.6, “SHOW COLUMNS Statement”, and Section 15.8.2, “EXPLAIN ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/drop-event.html
                                 DROP EVENT [IF EXISTS] event_name This statement drops the event named event_name. You can override this and cause the statement to generate a warning for nonexistent events instead using IF EXISTS. This statement requires the EVENT privilege for ...The event immediately ceases being active, and is deleted completely from the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/drop-function.html
                                 The DROP FUNCTION statement is used to drop stored functions and loadable functions: For information about dropping stored functions, see Section 15.1.29, “DROP PROCEDURE and DROP FUNCTION Statements”. For information about dropping loadable ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/drop-procedure.html
                                 DROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name These statements are used to drop a stored routine (a stored procedure or function). (DROP FUNCTION is also used to drop loadable functions; see Section 15.7.4.2, “DROP FUNCTION Statement for ...(If ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/drop-resource-group.html
                                The FORCE modifier determines statement behavior if the resource group has any threads assigned to it: If FORCE is not given and any threads are assigned to the group, an error occurs. DROP RESOURCE GROUP statements are not written to the binary log ... DROP RESOURCE GROUP group_name [FORCE] DROP RESOURCE GROUP is used for resource group management (see Section 7.1.16, “Resource ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/drop-server.html
                                 DROP SERVER [ IF EXISTS ] server_name Drops the server definition for the server named server_name. Dropping a server for a table does not affect any FEDERATED tables that used this connection information when they were created. DROP SERVER is not ...