Select name from mysql. proc where db = 'database name'; select routine_name from information_schema.routines where routine_schema = 'database name'; show procedure status where db = 'database name ';
DROP PROCEDURE
mysql > DELIMITER //mysql > CREATE PROCEDURE proc2(IN parameter int)-> begin -> declare var int;-> set var=parameter+1;-> if var=0 then -> insert into t values(17);-> end if;-> if parameter=0 then -> update t set s1=s1+1;-> else -> update t set s1=s1+2;-> end if;-> end;-> //mysql > DELIMITER ;
mysql > DELIMITER //mysql > CREATE PROCEDURE proc3 (in parameter int)-> begin -> declare var int;-> set var=parameter+1;-> case var-> when 0 then -> insert into t values(17);-> when 1 then -> insert into t values(18);-> else -> insert into t values(19);-> end case;-> end;-> //mysql > DELIMITER ;
- While... end while statement
mysql > DELIMITER //mysql > CREATE PROCEDURE proc4()-> begin -> declare var int;-> set var=0;-> while var<6 do-> insert into t values(var);-> set var=var+1;-> end while;-> end;-> //mysql > DELIMITER ;
- Repeat · end repeat statement
mysql > DELIMITER //mysql > CREATE PROCEDURE proc5 ()-> begin -> declare v int;-> set v=0;-> repeat-> insert into t values(v);-> set v=v+1;-> until v>=5-> end repeat;-> end;-> //mysql > DELIMITER ;
Similar to do... While statement.
- Loop... end loop statement
mysql > DELIMITER //mysql > CREATE PROCEDURE proc6 ()-> begin -> declare v int;-> set v=0;-> LOOP_LABLE:loop-> insert into t values(v);-> set v=v+1;-> if v >=5 then -> leave LOOP_LABLE;-> end if;-> end loop;-> end;-> //mysql > DELIMITER ;
The loop does not require the initial conditions. This is similar to the while loop, and does not require the end condition like the repeat loop. the leave statement is used to exit the loop.
mysql > DELIMITER //mysql > CREATE PROCEDURE proc10 ()-> begin -> declare v int;-> set v=0;-> LOOP_LABLE:loop-> if v=3 then -> set v=v+1;-> ITERATE LOOP_LABLE;-> end if;-> insert into t values(v);-> set v=v+1;-> if v>=5 then -> leave LOOP_LABLE;-> end if;-> end loop;-> end;-> //mysql > DELIMITER ;
You can refer to the compound statement label to start a compound statement.
Built-in functions
CHARSET (str) // returns the string character set
CONCAT (string2 [,...]) // connection string
INSTR (string, substring) // returns the position of the first occurrence of the substring in the string. If no position exists, 0 is returned.
LCASE (string2) // converts it to lowercase
LEFT (string2, length) // take the length from the LEFT of string2
LENGTH (string) // string LENGTH
LOAD_FILE (file_name) // read content from the file
LOCATE (substring, string [, start_position]) is the same as INSTR, but the start position can be specified.
LPAD (string2, length, pad) // repeat pad to start with string until the string length is length
LTRIM (string2) // Remove leading spaces
REPEAT (string2, count) // REPEAT count times
REPLACE (str, search_str, replace_str) // REPLACE search_str with replace_str in str
RPAD (string2, length, pad) // use pad after str until the length is length.
RTRIM (string2) // remove backend spaces
STRCMP (string1, string2) // compare the size of two strings by character,
SUBSTRING (str, position [, length]) // starts from the position of str and takes length characters,
Note: when processing strings in mysql, the Default subscript of the first character is 1, that is, the parameter position must be greater than or equal to 1.
TRIM ([[BOTH | LEADING | TRAILING] [padding] FROM] string2) // remove the specified character FROM the specified position
UCASE (string2) // converts to uppercase
RIGHT (string2, length) // gets the last length character of string2
SPACE (count) // Generate count spaces
ABS (number2) // absolute value
BIN (decimal_number) // Convert decimal to binary
CEILING (number2) // rounded up
CONV (number2, from_base, to_base) // hexadecimal conversion
FLOOR (number2) // round down
FORMAT (number, decimal_places) // number of reserved decimal places
HEX (DecimalNumber) // Convert to hexadecimal
Note: HEX () can be passed in a string, return its ASC-11 code, such as HEX ('def ') returns 4142143 can also be passed in a decimal integer, return its hexadecimal encoding, for example, HEX (25) returns 19
LEAST (number, number2 [,...]) // calculates the minimum value.
MOD (numerator, denominator) // Evaluate the remainder
POWER (number, power) // exponent
RAND ([seed]) // random number
ROUND (number [, decimals]) // rounding, decimals is the number of decimal places]
ADDTIME (date2, time_interval) // add time_interval to date2
CONVERT_TZ (datetime2, fromTZ, toTZ) // Convert the time zone
CURRENT_DATE () // Current date
CURRENT_TIME () // current time
CURRENT_TIMESTAMP () // Current timestamp
DATE (datetime) // return the DATE part of datetime
DATE_ADD (date2, INTERVAL d_value d_type) // add a date or time in date2
DATE_FORMAT (datetime, FormatCodes) // Display datetime in formatcodes format
DATE_SUB (date2, INTERVAL d_value d_type) // subtract a time from date2
DATEDIFF (date1, date2) // Two date differences
DAY (date) // returns the DAY of the date
DAYNAME (date) // English week
DAYOFWEEK (date) // Week (1-7), 1 is Sunday
DAYOFYEAR (date) // The Day of the year
EXTRACT (interval_name FROM date) // EXTRACT the specified part of the date FROM date
MAKEDATE (year, day) // specifies the day of the year and year to generate a date string.
MAKETIME (hour, minute, second) // Generate a time string
MONTHNAME (date) // name of the English month
NOW () // current time
SEC_TO_TIME (seconds) // converts seconds to time
STR_TO_DATE (string, format) // Convert string to time, which is displayed in format
TIMEDIFF (datetime1, datetime2) // Two time difference
TIME_TO_SEC (time) // time to seconds]
WEEK (date_time [, start_of_week]) // WEEK
YEAR (datetime) // YEAR
DAYOFMONTH (datetime) // The Day of the month
HOUR (datetime) // HOUR
LAST_DAY (date) // The last date of the month of date
MICROSECOND (datetime) // MICROSECOND
MONTH (datetime) // MONTH
MINUTE (datetime) // return the MINUTE sign, positive or negative or 0
SQRT (number2) // Square
I am the dividing line of tiantiao
Reference: http://www.cnblogs.com/GT_Andy/archive/2009/12/25/1921914.html
Reference: http://blog.sina.com.cn/s/blog_52d20fbf0100ofd5.html
Reprinted please indicate the source: http://www.cnblogs.com/yydcdut/