mysql存储过程递归调用发作树数据
mysql存储过程递归调用产生树数据 使用finereport的树下拉框时,要求提供有层次结构的数据。例如:一级001,二级001001,三级001001001 等。而我们一般的递归表是这样的,定义一个id和一个pid,id和pid在长度上没有父子关系。这样的数据,finereport是不认的。
mysql存储过程递归调用产生树数据使用finereport的树下拉框时,要求提供有层次结构的数据。例如:一级001,二级001001,三级001001001 等。而我们一般的递归表是这样的,定义一个id和一个pid,id和pid在长度上没有父子关系。这样的数据,finereport是不认的。故只能通过存储过程进行转换。 代码如下: SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `t_tlm_tree` -- ---------------------------- DROP TABLE IF EXISTS `t_tlm_tree`; CREATE TABLE `t_tlm_tree` ( `id` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '0' , `pid` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL , `nodename` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL , `fast` int(11) NULL DEFAULT NULL , PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8 COLLATE=utf8_unicode_ci ; -- ---------------------------- -- Records of t_tlm_tree -- ---------------------------- BEGIN; INSERT INTO `t_tlm_tree` VALUES ('10000', '-1', '中国', '1'), ('10001', '10000', '浙江', '1'), ('10002', '10000', '河南', '1'), ('10003', '10001', '杭州', '1'), ('10004', '10001', '温州', '1'), ('10005', '10002', '郑州', '1'), ('10006', '10002', '信阳', '1'), ('10007', '10006', '息县', '1'), ('10008', '10003', '滨江', '1'), ('10009', '10003', '西湖', '1'), ('10010', '10003', '上城', '1'), ('10011', '10006', '罗山', '1'); COMMIT; -- ---------------------------- -- Procedure structure for `p_create_tree_node` -- ---------------------------- DROP PROCEDURE IF EXISTS `p_create_tree_node`; DELIMITER ;; CREATE DEFINER=`root`@`localhost` PROCEDURE `p_create_tree_node`(IN `in_pid` varchar(100)) BEGIN DECLARE v_has_child INT default 0; DECLARE v_rows INT default 0; DECLARE v_id VARCHAR(100) default ''; DECLARE v_pid VARCHAR(100) default ''; DECLARE v_nodename VARCHAR(100) default ''; DECLARE v_tree_id VARCHAR(100) default ''; DECLARE v_tree_pid VARCHAR(100) default ''; DECLARE v_done INT default 0; DECLARE v_cur CURSOR FOR SELECT id,pid,nodename from t_tlm_tree where `fast`=1 and pid=in_pid; DECLARE CONTINUE HANDLER FOR NOT FOUND SET v_done=1; SET @@max_sp_recursion_depth = 100; OPEN v_cur; loop_tag:LOOP FETCH v_cur INTO v_id,v_pid,v_nodename; IF v_done=1 THEN LEAVE loop_tag; END IF; IF STRCMP(in_pid,'-1')=0 THEN insert into t_tlm_device_tree(id,pid,nodename,oid) values('001',null,v_nodename,v_id); ELSE select id into v_tree_pid from t_tlm_device_tree where oid = in_pid; set v_rows = v_rows+1; set v_tree_id = concat('000',v_rows); set @len = LENGTH(v_tree_id)-2; set v_tree_id = SUBSTR(v_tree_id FROM @len); set v_tree_id = concat(v_tree_pid,v_tree_id); insert into t_tlm_device_tree(id,pid,nodename,oid) values(v_tree_id,v_tree_pid,v_nodename,v_id); END IF; set v_has_child = f_has_child_by_pid(v_id); IF v_has_child =1 THEN call p_create_tree_node(v_id); END IF; END LOOP loop_tag; CLOSE v_cur; END ;; DELIMITER ; -- ---------------------------- -- Procedure structure for `p_get_device_tree` -- ---------------------------- DROP PROCEDURE IF EXISTS `p_get_device_tree`; DELIMITER ;; CREATE DEFINER=`root`@`localhost` PROCEDURE `p_get_device_tree`() BEGIN DECLARE v_pid VARCHAR(100) default '-1'; DROP TEMPORARY TABLE IF EXISTS t_tlm_device_tree; CREATE TEMPORARY TABLE t_tlm_device_tree ( id varchar(100), pid varchar(100), nodename varchar(100), oid int(100), PRIMARY KEY (id) ); call p_create_tree_node(v_pid); select * from t_tlm_device_tree; TRUNCATE TABLE t_tlm_device_tree; DROP TEMPORARY TABLE IF EXISTS t_tlm_device_tree; END ;; DELIMITER ; -- ---------------------------- -- Function structure for `f_has_child_by_pid` -- ---------------------------- DROP FUNCTION IF EXISTS `f_has_child_by_pid`; DELIMITER ;; CREATE DEFINER=`root`@`localhost` FUNCTION `f_has_child_by_pid`(`f_pid` varchar(100)) RETURNS int(11) BEGIN DECLARE v_ret int default 0; select count(1) into @num from t_tlm_tree where pid=f_pid and `fast`=1; IF @num >0 THEN set v_ret = 1; END IF; return v_ret; END ;; DELIMITER ;
?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

MySQL and phpMyAdmin are powerful database management tools. 1) MySQL is used to create databases and tables, and to execute DML and SQL queries. 2) phpMyAdmin provides an intuitive interface for database management, table structure management, data operations and user permission management.

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

MySQL is suitable for web applications and content management systems and is popular for its open source, high performance and ease of use. 1) Compared with PostgreSQL, MySQL performs better in simple queries and high concurrent read operations. 2) Compared with Oracle, MySQL is more popular among small and medium-sized enterprises because of its open source and low cost. 3) Compared with Microsoft SQL Server, MySQL is more suitable for cross-platform applications. 4) Unlike MongoDB, MySQL is more suitable for structured data and transaction processing.
