Table Model:
CREATE TABLE `employee` (
`empId` int(11) NOT NULL,
`managerEmpId` int(11) DEFAULT NULL,
PRIMARY KEY (`empId`)
)
Data Recorded:
| empId | managerEmpId |
| 1010 | 1022 |
| 1013 | 1022 |
| 1014 | 1023 |
| 1015 | 1023 |
| 1016 | 1023 |
| 1017 | 1023 |
| 1022 | 1023 |
| 1001 | 1021 |
| 1006 | 1008 |
| 1007 | 1024 |
| 1008 | 1024 |
| 1009 | 1022 |
| 1011 | 1022 |
| 1012 | 1011 |
| 1018 | 1021 |
I need all child empId for a manager including his reportee's reportee.
And the query I have written is :
CREATE PROCEDURE get_tree (IN parentId int)
BEGIN
declare childId int;
select empId into childId from (SELECT GROUP_CONCAT(empId SEPARATOR ',') as empId FROM employee WHERE managerEmpId IN (parentId)) child;
select childId;
create TEMPORARY table IF NOT EXISTS temp_table as (select * from employee where empId=parentId);
WHILE childId != null DO
insert into temp_table select * from employee WHERE empId IN (childId);
SET parentId=childId;
select parentId;
select empId into childId FROM (SELECT GROUP_CONCAT(empId SEPARATOR ',') as empId FROM employee WHERE managerEmpId IN (parentId))child;
END WHILE;
select * from temp_table;
END//
I am getting the error :
ERROR 1265 (01000): Data truncated for column 'childId' at row 1
Can anyone please help me.