Changing and Removing Functions : Function « Procedure Function « MySQL Tutorial

Home
MySQL Tutorial
1.Introduction
2.Select Query
3.Database
4.Table
5.Table Join
6.Subquery
7.Insert Update Delete
8.Logic Operator
9.View
10.Data Types
11.Procedure Function
12.Cursor
13.Trigger
14.Date Time Functions
15.Comparison Functions Operators
16.Aggregate Functions
17.Cast Functions Operators
18.Control Flow Functions
19.Encryption Compression Functions
20.Information Functions
21.Math Numeric Functions
22.Miscellaneous Functions
23.String Functions
24.Regular Expressions
25.Data Dictionary
26.MySQL Utilities
27.Privilege
MySQL Tutorial » Procedure Function » Function 
11.3.6.Changing and Removing Functions

MySQL provides an ALTER statement for stored functions.

The ALTER statement can change only the characteristics of a function, not the SQL statements that make up the body.

The ALTER statement has the following syntax:

You can change multiple characteristics within a single ALTER statement.

If a characteristic isn't specified in the statement, the value is left as it was when the function was created.

The DETERMINISTIC characteristic isn't allowed in the ALTER statement.

ALTER FUNCTION [database.] ;

ALTER FUNCTION test.myFunction
  COMMENT 'This is the new comment.';
11.3.Function
11.3.1.Creating Functions
11.3.2.A function that takes a parameter, performs an operation using an SQL function, and returns the result
11.3.3.Single statement function
11.3.4.Nested function call
11.3.5.Using buildin function in user-defined function
11.3.6.Changing and Removing Functions
11.3.7.To remove a stored function, use the DROP command
11.3.8.Create a procedure for 'READS SQL DATA'
11.3.9.ALTER PROCEDURE and ALTER FUNCTION Syntax
11.3.10.DROP PROCEDURE and DROP FUNCTION Syntax
11.3.11.Function Permissions
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.