employee表 数据准备 use tempdb go if OBJECT_ID('employee') is not null drop table employee ;with employee(id,name,salary,manager_id) as ( select * from ( values (,,), (,,), (,,), (,,), (,,), (,,), (,,NULL) ) as ve(id,name,salary,manager_id) ) select * int…