MySQL用預存程序實現遞迴查詢(二)

來源:互聯網
上載者:User

I have only recently started working heavily
with stored procedures and functions in MySQL. After years in the
Oracle world with advanced stored procedures, functions and packages,
I’ve had to come to grips with the shortcomings of MySQL. One of those
is recursive functions. MySQL allows recursive stored procedures, but
not recursive stored functions. Here is my workaround…

First create your main logic as a stored procedure with an OUT variable:

DELIMITER |
CREATE PROCEDURE my_recursive_proc(a_some_parameter INTEGER, OUT a_result INTEGER)
BEGIN
DECLARE v_my_number INTEGER DEFAULT 0;
-- Have to set max_sp_recursion_depth inside the stored procedure
SET max_sp_recursion_depth := 20;
SET v_my_number := v_my_number + a_some_parameter;
IF v_my_number < 100 THEN
CALL my_recursive_proc(10, v_my_number);
END IF;
SET a_result := v_my_number;
END |
DELIMITER ;

So now I have a recursive procedure that calls itself adding 10 to
the initial number until we get to 100. In the real world we'd be doing
something serious like descending through related child records until we
find some search result. What I really want now is a function I can
call in a WHERE clause somewhere.

Here's all we have to do:

CREATE FUNCTION my_recursive_func(a_some_parameter INTEGER)
RETURNS INTEGER
BEGIN
DECLARE v_result INTEGER DEFAULT 0;
CALL my_recursive_proc(a_some_parameter, v_result);
RETURN v_result;
END |
DELIMITER ;

Now in my SELECT statements I can do:
SELECT * FROM my_table WHERE my_recursive_func(some_column) = 100;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.