CREATE PROCEDURE
On this page
Creates a stored procedure.
Stored procedures can return all the value types that UDFs can return, but stored procedures can also return query-type values.
Note
Stored Procedures check for compilation errors upon creation; however, runtime errors are not checked.
Syntax
CREATE [OR REPLACE] PROCEDURE procedure_name ( [parameter_list] )[RETURNS { data_type [data_type_modifier] } ][AUTHORIZE AS DEFINER] | AUTHORIZE AS CURRENT_USER] [DEFINER = ‘user’[@’host’] AS[DECLARE variable_list] [ ...n ]BEGINprocedure_bodyEND ;parameter_list:parameter_name data_type [data_type_modifier [ ...n ] ] [, ...]data_type_modifier:DEFAULT default_value | NOT NULL | NULL | COLLATE collation_namevariable_list:variable_name type_expression [= value_expression ] ; [... ;]
Arguments
OR REPLACE
If specified, replaces a stored procedure if one already exists with the same name.
procedure_
The name of the stored procedure.CONCAT()
, ABS()
, COUNT()
, and so on.
You can also specify database_
and procedure_
together by replacing procedure_
with database_
instead of defaulting to the current context database.
CREATE PROCEDURE db.some_func(a int)...
Procedure names are not case-sensitive.
parameter_
Input parameters are optional.,
).
The following example shows how to declare a single input parameter:
CREATE PROCEDURE single_param_example(a INT)...
Stored procedures allow scalar data types, non-scalar data types (ARRAY
and RECORD
), and query data types as input parameters.
CREATE PROCEDURE multi_param_example(a INT, b ARRAY(BIGINT NOT NULL), c DECIMAL(19,4), d QUERY(col1 TEXT))...
Default values can be specified for input parameters by using the DEFAULT
constraint.
CREATE PROCEDURE default_example(a INT DEFAULT 5)...
Input parameters can also specify data type modifiers, namely NOT NULL
, NULL
, and COLLATE
.
CREATE PROCEDURE modifier_example(a TEXT NOT NULL COLLATE utf8_bin)...
You can use parameters with any supported character sets using the following syntax.
CREATE PROCEDURE procedure_name ( [parameter_name data_type COLLATE collation_name], [...n] )...
In a similar fashion, you can use variables with any supported character sets.
For more information, see Character Encoding.
AUTHORIZE AS DEFINER ] | AUTHORIZE AS CURRENT_AUTHORIZE AS DEFINER [DEFINER =‘user’[@’host’]]
option is executed using the security permissions of the definer assigned to that stored procedure.EXECUTE
permission.AUTHORIZE AS CURRENT_
option, the stored procedure is executed using the current user's security permissions.EXECUTE
permission to execute stored procedures created with the AUTHORIZE AS CURRENT_
option.
If AUTHORIZE AS DEFINER ] | AUTHORIZE AS CURRENT_
options are not used when creating a stored procedure, the definer is the user who created it by default.EXECUTE
permission to execute the stored procedure.
Creating a stored procedure with different user permissions than the stored procedure creator can be useful for securing your database and ensuring that the appropriate actions are performed only by authorized users.DEFINER
and CURRENT_
security model works.
Here is a stored procedure example where the executor permissions will be the same as the definer's permissions.EXECUTE
permission:
DELIMITER //CREATE PROCEDURE proc1() AUTHORIZE AS DEFINER DEFINER = 'test1'@'%'ASBEGINECHO SELECT CURRENT_USER();END;//
CALL proc1();
+---------------+
| CURRENT_USER()|
+---------------+
| test1@% |
+---------------+
Here is a stored procedure example where the permissions are the user executing the object, not the definer.EXECUTE
permission to run the stored procedure:
DELIMITER //CREATE PROCEDURE proc2() AUTHORIZE AS CURRENT_USER DEFINER = 'test1'@'%' ASBEGINECHO SELECT CURRENT_USER();END;//
CALL proc2();
+----------------+
| CURRENT_USER() |
+----------------+
| root@% |
+----------------+
Here is a stored procedure example where the definer is the user creating the object by default.EXECUTE
permission:
DELIMITER //CREATE PROCEDURE proc3() AUTHORIZE AS CURRENT_USER ASBEGINECHO SELECT CURRENT_USER();END;//
CREATE USER test1;
GRANT SELECT, EXECUTE ON db.* TO 'test1'@'%';
If you log back into the cluster as the test1 user and execute the proc3
stored procedure:
CALL proc3();
+----------------+
| CURRENT_USER() |
+----------------+
| test1@% |
+----------------+
data_
Any scalar-valued, non-scalar-valued, or query data type.
procedure_
A vast majority of Data Manipulation Language statements including EXPLAIN <query>
(but not EXPLAIN BALANCE
), PROFILE <query>
, and all SHOW
commands are supported in the body of a stored procedure.
-
ALTER TABLE
-
ANALYZE TABLE
-
COMMIT
-
CREATE INDEX
-
CREATE GROUP
-
CREATE PIPELINE
-
CREATE ROLE
-
CREATE TABLE
-
CREATE USER
-
CREATE VIEW
-
DROP .
. . FROM PLANCACHE -
DROP GROUP
-
DROP INDEX
-
DROP PLAN
-
DROP ROLE
-
DROP TABLE
-
DROP USER
-
DROP VIEW
-
ECHO SELECT
-
FILL CONNECTION POOLS
-
FLUSH CONNECTION POOLS
-
GRANT
-
GRANT GROUP
-
GRANT ROLE
-
GRANT TO ROLE
-
KILLALL QUERIES
-
OPTIMIZE PIPELINE
-
OPTIMIZE TABLE
-
REVOKE
-
REVOKE FROM ROLE
-
REVOKE ROLE FROM GROUP
-
ROLLBACK
-
SET
-
SHOW PROFILE
-
SNAPSHOT DATABASE
-
START PIPELINE
-
START TRANSACTION
-
STOP PIPELINE
-
TRANSACTION
-
TRUNCATE TABLE
Note
SingleStore does not allow DDL commands in stored procedures that are called from pipelines.
When running stored procedures with DML queries on reference tables, you must connect to the master aggregator.
Note
SELECT
statements may be used if assigned to a QUERY
type variable or if used as part of an ECHO SELECT
statement.ECHO SELECT
, the SELECT
statement will execute and the resulting rows will be returned to the client as part of a multi-result set.
In addition to the SQL statements listed above, the following statements are also supported:
-
Any CALL statement to execute another stored procedure.
-
Execution of a UDF if it is used as an expression inside a query, or alternately if it is on the right side of an assignment.
-
Execution of a TVF if it is inside the
FROM
clause of a DML statement. -
Variable assignments.
-
The
%ROWTYPE
attribute gives a record type that mirrors a table row and the%TYPE
attribute designates the type of a referenced scalar object, such as another variable or column.Using these attributes can make it easier to program stored procedures and anonymous code blocks by reducing the amount of code that needs to be written. Refer to the %ROWTYPE and %TYPE page for more information. -
Refer to the Permission Matrix for the required permission.
MySQL Client Delimiters
When creating a procedure using a MySQL-compatible client connected to SingleStore, you must change the client delimiter to ensure that the procedure definition is correctly passed to the server and then set it back to a semicolon after the alternate delimiter is no longer needed.
Security and Permissions
Stored procedures in SingleStore can use the Definer Security Model or the Current User Security Model.EXECUTE
permissions on every UDF or SP that is used in the procedure body, and the permissions to execute every SQL statement that appears in the procedure body.
Variable and Parameter Substitution in SQL Statements
You may include the value of a parameter or a variable (a system-defined global or session variable) in a SQL query inside a stored procedure by using its name in a place where a constant value may appear.
Limitations
Stored procedures are limited in the following ways:
Calling Limitations
A stored procedure can only be invoked in one of the following ways:
-
Using CALL from within other stored procedures
-
Using CALL or ECHO from a client application connected to SingleStore.
-
Inside an expression from within other stored procedures, for example:
varName = storedProcedureName ( argument_list )
Stored procedures cannot be invoked within SQL queries, views, user-defined scalar-valued functions (UDFs), user-defined table-valued functions (TVFs), or user-defined aggregate functions (UDAFs).
Function Overloading
A stored procedure’s definition cannot be overloaded by changing the procedure signature, such as adding or removing input parameters or changing the return type.
MySQL Client Delimiters Limitations
When using client applications like the mysql
command line interface, Sequel Pro, or other similar tools to connect to SingleStore, you must bound the CREATE PROCEDURE
statement with delimiters other than semi-colon.DELIMITER //
and DELIMITER ;
in the example below.
The DELIMITER
commands must be on independent lines.
When creating stored procedures or functions from your own client application created in a language such as Java, C++, or Python, the delimiters are not needed.
Examples
Formatting Data Using Stored Procedures
The following example uses a stored procedure to format data before insertion into the courses
table.
CREATE TABLE courses(course_code TEXT, section_number INT, number_students INT);DELIMITER //CREATE OR REPLACE PROCEDURE courses_sp (course_code TEXT, section_number INT, number_students INT) ASDECLAREcode TEXT = UCASE(course_code);num_students INT = number_students + 1;BEGININSERT INTO courses VALUES (code, section_number, num_students);END //DELIMITER ;
Call courses_
four times, where the courses
table initially contains no records:
CALL courses_sp("cs-101",1,13);CALL courses_sp("cs-201",1,11);CALL courses_sp("cs-201",2,8);CALL courses_sp("cs-301",1,14);SELECT * FROM courses ORDER BY course_code, section_number;
+-------------+----------------+-----------------+
| course_code | section_number | number_students |
+-------------+----------------+-----------------+
| CS-101 | 1 | 14 |
| CS-201 | 1 | 12 |
| CS-201 | 2 | 9 |
| CS-301 | 1 | 15 |
+-------------+----------------+-----------------+
Arguments to stored procedures can use positional, named, or mixed notation.
Bank Transaction Example
The following example demonstrates how to use a stored procedure to perform a calculation on a bank account and, if sufficient funds are present, deduct the charge amount from the balance.
This example uses two tables:
CREATE TABLE accounts (id BIGINT AUTO_INCREMENT,first_name VARCHAR(255),last_name VARCHAR(255),PRIMARY KEY (id));CREATE TABLE account_balance (account_id BIGINT,remaining_balance DECIMAL(18,4),PRIMARY KEY (account_id));
The following example user and balance is inserted into the account:
INSERT INTO accounts VALUES(DEFAULT, "John", "Doe");INSERT INTO account_balance VALUES(1, 500.0000);
Now that the example tables have been created with test data, you can create the stored procedure.
DELIMITER //CREATE PROCEDURE charge_account(id BIGINT, amount DECIMAL(18,4)) ASDECLAREbalance_tbl QUERY(bal DECIMAL(18,4)) =SELECT remaining_balanceFROM account_balanceWHERE account_id = id;balance DECIMAL(18,4) = SCALAR(balance_tbl);updated_balance DECIMAL(18,4) = balance - amount;BEGINIF balance > amount THENUPDATE account_balanceSET remaining_balance = updated_balanceWHERE account_id = id;END IF;END //DELIMITER ;
You can execute this procedure by using the CALL command in the client:
CALL charge_account(1, 200.0000);
Next, execute the following SELECT
statement to see the account’s new balance.
SELECT account_balance.account_id, account_balance.remaining_balance,accounts.first_name, accounts.last_nameFROM accounts, account_balanceWHERE accounts.id = account_balance.account_id;
This produces the following results:
+------------+-------------------+------------+-----------+| account_id | remaining_balance | first_name | last_name |+------------+-------------------+------------+-----------+| 1 | 300.0000 | John | Doe |+------------+-------------------+------------+-----------+
Query Tuning Example with PROFILE
The following is an example of how to include PROFILE in a stored procedure.
First, a table called ticket_
is created and populated with example data.
CREATE TABLE if NOT EXISTS ticket_sales(order_id int,order_date datetime,key(order_id),shard(order_id));INSERT INTO ticket_sales VALUES(1, now());/* Run the below command until 524288 rows of data have been inserted into the table. */INSERT INTO ticket_salesSELECT order_id+(SELECT max(order_id) FROM expedited_orders), now()FROM ticket_sales;
Then, a stored procedure for counting the number of ticket sales by minute, and profiling the query that does this is created.
DELIMITER //CREATE PROCEDURE ticket_sales_by_minute() asBEGINEXECUTE IMMEDIATE "ECHO SELECT COUNT(distinct order_id), MINUTE(order_date) FROM ticket_sales GROUP BY 2";EXECUTE IMMEDIATE "PROFILE SELECT COUNT(distinct order_id), MINUTE(order_date) from ticket_sales GROUP BY 2";END //DELIMITER ;
Once the procedure has been called, SHOW PROFILE
can easily be run in order to see the profile metrics of the query in the stored procedure.SHOW PROFILE
can also be included in the stored procedure if you would like to see profile metrics each time the procedure is called.
CALL ticket_sales_by_minute();SHOW PROFILE;
See Query Tuning for further guidance on using profile statistics to improve query performance.
Recursive Tree Expansion Example
The following example shows how to expand a tree represented by data in a table.
Note
There is an easier-to-use method to obtain the same expanded data using a recursive common table expression which requires only a single SQL statement.
-------- Recursive tree expansion example---- Important points:-- Only references from child to parent are used.-- The number of queries run (trips through the loop)-- is proportional to the height of the tree.CREATE TABLE emp(id int, mgr_id int, name varchar(30));INSERT emp VALUES(1, NULL, "Maggie"); -- bossINSERT emp VALUES(2, 1, "John");INSERT emp VALUES(3, 1, "Felix");INSERT emp VALUES(4, 2, "Joan");INSERT emp VALUES(5, 2, "Richard");INSERT emp VALUES(6, 3, "Andy");INSERT emp VALUES(7, 3, "Jill");/*Diagram of tree represented by the rows above:Maggie/ \John Felix/ \ / \Joan Richard Andy Jill*/-- Find all employees under specific manager and output them into-- table emps_at_and_below_mgr.DELIMITER //CREATE OR REPLACE PROCEDURE get_emp_tree(mname varchar(30))ASDECLAREcurrent_level int = 0;num_inserted int;result_q query(id int, mgr_id int, name varchar(30), level int) =SELECT id, mgr_id, name, level FROM emps_at_and_below_mgr;BEGINCREATE TEMPORARY TABLE emps_at_and_below_mgr(id int, mgr_id int, name varchar(30), level int);DELETE FROM emps_at_and_below_mgr;INSERT INTO emps_at_and_below_mgrSELECT *, 0FROM emp WHERE name = mname;num_inserted = 1;WHILE num_inserted <> 0 LOOPINSERT INTO emps_at_and_below_mgrSELECT emp.*, current_level + 1FROM emp, emps_at_and_below_mgr tWHERE emp.mgr_id = t.id and t.level = current_level;num_inserted = row_count();current_level += 1;END LOOP;ECHO SELECT id, mgr_id, name, level from result_q;DROP TABLE emps_at_and_below_mgr;END //DELIMITER ;CALL get_emp_tree("Maggie");CALL get_emp_tree("Felix");CALL get_emp_tree("Jill");
The results of the CALL statements above illustrate the tree expansion:
CALL get_emp_tree("Maggie");
+------+--------+---------+-------+
| id | mgr_id | name | level |
+------+--------+---------+-------+
| 1 | NULL | Maggie | 0 |
| 4 | 2 | Joan | 2 |
| 5 | 2 | Richard | 2 |
| 2 | 1 | John | 1 |
| 3 | 1 | Felix | 1 |
| 7 | 3 | Jill | 2 |
| 6 | 3 | Andy | 2 |
+------+--------+---------+-------+
CALL get_emp_tree("Felix");
+------+--------+-------+-------+
| id | mgr_id | name | level |
+------+--------+-------+-------+
| 7 | 3 | Jill | 1 |
| 6 | 3 | Andy | 1 |
| 3 | 1 | Felix | 0 |
+------+--------+-------+-------+
CALL get_emp_tree("Jill");
+------+--------+------+-------+
| id | mgr_id | name | level |
+------+--------+------+-------+
| 7 | 3 | Jill | 0 |
+------+--------+------+-------+
Calling Stored Procedures Inside Expressions
The following example shows how a stored procedure can be called inside an expression from within another stored procedure.
CREATE TABLE reading(dt DATETIME(6), sensorID INT, value FLOAT);INSERT reading VALUES(NOW(6), 1, 5.0);INSERT reading VALUES(NOW(6), 1, 5.5);INSERT reading VALUES(NOW(6), 2, 4.0);DELIMITER //CREATE OR REPLACE PROCEDURE getLastReading(_sensorID INT) RETURNS FLOAT ASDECLAREq query(value FLOAT) =SELECT valueFROM readingWHERE sensorID = _sensorIDAND dt = (SELECT max(dt) FROM reading WHERE sensorID = _sensorID);BEGINRETURN SCALAR(q);END //CREATE OR REPLACE PROCEDURE getLastReadings() ASDECLAREr1 FLOAT;r2 FLOAT;BEGINr1 = getLastReading(1);r2 = getLastReading(2);ECHO SELECT(CONCAT('reading 1 = ', r1 , '; reading 2 = ', r2)) AS msg;END //DELIMITER ;
Note
The following statements (in the code block above) show how stored procedures that return a scalar value can also be called on the right hand side of an assignment operation (within another stored procedure).
r1 = getLastReading(1);
r2 = getLastReading(2);
You can also embed the call to a stored procedure nested down inside an expression.
var = CEIL(sp(2) + (ABS((TO_NUMBER('123') + sp(1)))));
SELECT * FROM reading ORDER BY dt;
+----------------------------+----------+-------+
| dt | sensorID | value |
+----------------------------+----------+-------+
| 2019-09-10 09:54:50.453440 | 1 | 5 |
| 2019-09-10 09:54:50.468527 | 1 | 5.5 |
| 2019-09-10 09:54:50.473642 | 2 | 4 |
+----------------------------+----------+-------+
CALL getLastReadings();
+--------------------------------+
| msg |
+--------------------------------+
| reading 1 = 5.5; reading 2 = 4 |
+--------------------------------+
Nested DECLARE
Blocks
The following example shows how you can use nested DECLARE
blocks inside a stored procedure.
DELIMITER //CREATE OR REPLACE PROCEDURE nestEx() ASDECLAREx INT = 5;BEGINDECLARE y INT = x*x;BEGINECHO SELECT x AS 'X', y AS 'X(squared)';END;END //DELIMITER ;CALL nestEx();
+------+------------+
| X | X(squared) |
+------+------------+
| 5 | 25 |
+------+------------+
Using Variables inside Stored Procedures
The following example shows how to set and reference the values of engine variables inside a stored procedure.
DELIMITER //CREATE OR REPLACE PROCEDURE setVar() ASDECLARE ver DOUBLE;BEGINver = @@memsql_version;ECHO SELECT ver AS Version, @@memsql_version_date AS Dated;SET GLOBAL cardinality_estimation_level = '7.1';SET autocommit = 0;ECHO SELECT @@cardinality_estimation_level AS CardinalityLvl, @@autocommit AS Autocommit;END //DELIMITER ;CALL setVar();
+---------+--------------------------------+
| Version | Dated |
+---------+--------------------------------+
| 7.3 | Mon Oct 12 16:12:11 2020 +0000 |
+---------+--------------------------------+
+----------------+------------+
| CardinalityLvl | Autocommit |
+----------------+------------+
| 7.1 | 0 |
+----------------+------------+
Specifying Collation in Stored Procedures
The following example illustrates a stored procedure that has parameters and literals used with utf8mb4 in variables initialized with a DECLARE statement.
SET COLLATION_SERVER = utf8mb4_general_ci;
Query OK, 0 rows affected (0.00 sec)
CREATE TABLE feedback(product_rating VARCHAR(30), customer_service_rating VARCHAR(30));INSERT feedback VALUES("Happy😊", "Neutral😐"), ("Happy😊", "Happy😊"), ("Neutral😐", "Neutral😐");DELIMITER //CREATE OR REPLACE PROCEDURE sample_procedure(customer_feedback VARCHAR(30))RETURNS QUERY(product_rating VARCHAR(30), customer_service_rating VARCHAR(30)) AS/*Literals and parameters use the utf8mb4 character set in variables*/DECLARE q QUERY(product_rating VARCHAR(30), customer_service_rating VARCHAR(30)) = SELECT product_rating, customer_service_rating FROM feedback WHERE product_rating = "Happy😊" AND customer_service_rating = customer_feedback;BEGINRETURN q;END //DELIMITER ;ECHO sample_procedure("Neutral😐");
+----------------+-------------------------+
| product_rating | customer_service_rating |
+----------------+-------------------------+
| Happy😊 | Neutral😐 |
+----------------+-------------------------+
The following example demonstrates a stored procedure that has parameters and literals used with utf8mb4 in variables initialized with a SELECT … INTO statement.
CREATE TABLE feedback(product_rating VARCHAR(30) COLLATE utf8mb4_general_ci, customer_service_rating VARCHAR(30)) COLLATE utf8mb4_general_ci;INSERT feedback VALUES("Happy😊", "Neutral😐"), ("Happy😊", "Happy😊"), ("Neutral😐", "Neutral😐");DELIMITER //CREATE OR REPLACE PROCEDURE procedure_example(customer_feedback VARCHAR(30) COLLATE utf8mb4_general_ci)AS/*Literals and parameters use the utf8mb4 character set in variables*/DECLARE feedback_count INT;BEGINSELECT COUNT(*) INTO feedback_count FROM feedback WHERE product_rating = "Happy😊" AND customer_service_rating = customer_feedback;ECHO SELECT feedback_count;END //DELIMITER ;CALL procedure_example("Neutral😐");
+----------------+
| feedback_count |
+----------------+
| 1 |
+----------------+
Query OK, 0 rows affected (0.06 sec)
Note that all supported character sets can also be used in dynamic SQL.
Passing Arrays to Stored Procedures
The following example shows how to pass an integer type array as an argument to a stored procedure:
DELIMITER //CREATE OR REPLACE PROCEDURE arExec(spec ARRAY(INT)) ASDECLAREres VARCHAR(255) = '';BEGINFOR i IN 0 .. LENGTH(spec) - 1 LOOPres = CONCAT(res, " ", spec[i]);END LOOP;ECHO SELECT res;END //DELIMITER ;CALL arExec([1,2,3] :> ARRAY(INT));
+--------+
| res |
+--------+
| 1 2 3 |
+--------+
The following example demonstrates a stored procedure that has a RECORD
type array as an argument:
DELIMITER //CREATE OR REPLACE PROCEDURE arExec(spec ARRAY(RECORD(ID INT, Code TEXT))) ASDECLAREres VARCHAR(255) = '';BEGINFOR i IN 0 .. LENGTH(spec) - 1 LOOPres = CONCAT(res, " ", spec[i].ID, " ", spec[i].Code);END LOOP;ECHO SELECT res;END //DELIMITER ;CALL arExec([ROW(1,'XSD'), ROW(2, 'PRT')] :> ARRAY(RECORD(ID INT, Code TEXT)));
+--------------+
| res |
+--------------+
| 1 XSD 2 PRT |
+--------------+
Note that arrays of other supported data types can also be passed as an argument to a stored procedure.
Additional Capabilities
The body of a stored procedure can contain statements for control flow, transaction management, and exception handling.
This command causes implicit commits.
Related Topics
Last modified: October 1, 2024