SELECT temp01.teacher_account AS "工号", temp01.teacher_name AS "姓名", temp01.org_name AS "人事所在单位", temp01.join_date AS "来校工作日期" FROM (MATCH (person:/univ_demo/person WHERE status = '在职' AND person_sort = '事业编' AND staff_type = '专任教师岗位')-[:person_to_org*1..1]->(org:/univ_demo/org) RETURN person.account AS "teacher_account", person.name AS "teacher_name", person.lx_date AS "join_date", org.name AS "org_name") temp01 ORDER BY temp01."join_date" ASC LIMIT 0, 500000 WITH TIMEOUT = 6m /** output() count(1029) **/ ;