s-HR常用sql语句汇总作者:天津分公司-刘媛前言:仅为个人总结,仅供参考,如与总部老师提供有出入,请以总部老师意见为准1、查询员工信息表select*fromT_BD_Personselect*fromT_BD_Personwherefname_L2=’张三’------------------按姓名查询select*fromt_bd_personwherefnumber='E00000129'--------------按员工编码查询2、查询岗位信息select*fromT_ORG_Positionselect*fromT_ORG_Positionwherefnumber='P002219'----------按岗位编码查询3、查询员工合同信息select*fromt_hr_EmployeeContractselect*fromt_hr_EmployeeContractwherefcontractno='HT-E00004397-000'---按合同编号查询SELECT*fromt_hr_hrcontractinfowherefemployeeid='qup1SkWASXCiAQ35TzSKFIDvfe0='按员工ID查询4、查询员工合同信息select*fromt_hr_employeecontractwherefemployeeidin(selectfidfromt_bd_personwherefname_l2='杨川')按姓名查询员工合同select*fromt_hr_hrcontractinfowherefemployeeidin(selectfidfromt_bd_personwherefname_l2='杨川')按姓名查询合同信息表select*fromT_HR_ContractPageInfowherefpersonidin(selectfidfromt_bd_personwherefname_l2='杨川')按姓名查询员工合同页签selectfemployeecontractidfromT_HR_ContractPageInfowherefpersonidin(selectfidfromt_bd_personwherefname_l2='杨川')--QWT+InOZRxuTzxo6hEaohHvTdZI按姓名查询合同ID-select*fromt_hr_employeecontractwherefid='QWT+InOZRxuTzxo6hEaohHvTdZI='按照合同ID查询合同5、删除员工合同信息delete*fromt_hr_EmployeeContractwherefcontractno='HT-E00004397-000'—按合同编号删除delete*fromt_hr_hrcontractinfowherefcontractno='HT-E00004397-000'—按合同编号删除6、批量修改劳动合同法人select*fromt_hr_employeecontractwhereftounit_l2='天津百利二通机械有限公司'--劳动合同主体名称updatet_hr_employeecontractsetfdelegateperson_l2='王津利'whereftounit_l2='天津百利二通机械有限公司'--更新此劳动合同主体的法人select*fromt_hr_hrcontractinfowhereftounit_l2='天津百利二通机械有限公司'updatet_hr_hrcontractinfosetfdelegateperson_l2='王津利'whereftounit_l2='天津百利二通机械有限公司'7、查询所有用工关系类型select*fromT_BD_EmployeeModle8、删除某组织下所有人员职称信息1)-查询***组织的组织长名称selectfdisplayName_l2fromt_org_adminwherefname_l2='***组织'2)--查询***组织全名称下的所有组织下的人员,看看是不是这些人select*fromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'***组织全名称%'))3)--查询***组织全名称下的所有组织下的人员的职称信息(用上一条语句查询出来的结果替换***组织全名称)Select*fromT_HR_PersonTechPostwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'***组织全名称%')));4)–删除***组织全名称下的所有组织下的人员的职称信息(用上一条语句查询出来的结果替换***组织全名称)deletefromT_HR_PersonTechPostwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'***组织全名称%')));5)删除前请备份表:selectintoT_HR_PersonTechPost1208*fromT_HR_PersonTechPost9、删除某组织下所有人员学历信息--查询***组织全名称下的所有组织下的人员的学历信息select*fromT_HR_PersonDegreewherefpersonidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津拖拉机制造有限公司%'))–删除***组织全名称下的所有组织下的人员的职称信息deletefromT_HR_PersonDegreewherefpersonidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津拖拉机制造有限公司%'))10、查询社保档案信息select*fromT_HR_SSocEmpSocFiles如提示有相同社账号或者公积金账号可以进行查询select*fromT_HR_SSocEmpSocFileswherefsocaccount='120113199306041629'社保账号select*fromT_HR_SSocEmpSocFileswherehousefundaccount=’xxxxxxxxxx’公积金账号查询某组织下社保档案select*fromT_HR_SSocEmpSocFileswherefpersonidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'%天津百利二通机械有限公司%'))删除某组织下社保档案deletefromT_HR_SSocEmpSocFileswherefpersonidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'%天津百利二通机械有限公司%'))11、查询定调薪单select*fromT_HR_SAdjustSalaryBill12、更新员工的入职日期updateT_HR_PersonPositionsetfenterdate={ts'2014-08-0400:00:00'}wherefpersonidin(selectfidfromt_bd_personwherefnumber='E00003724')fnumber为员工编码--------13、做员工变动时,提示员工在此日期之后做过业务检查如不是存在当前日期的任职变动,检查一下职业信息变更记录表,后台修复select*fromt_bd_personhiswherefname_l2='xxx'修改查询结果,将最后一条记录的生效日期改为变动日期之前,直接修改回车查询员工信息表select*fromt_bd_personwherefname_l2='xxx'修改生效日期与上面最后一条一致修改职业信息生效日期与前面一致select*fromT_HR_PersonPositionwherefpersonid='D5MRoqu+TtCZOwh/SfurcIDvfe0='修改职业历史信息,生效日期与前面一致select*fromT_HR_PersonPositionhiswherefpersonid='D5MRoqu+TtCZOwh/SfurcIDvfe0='14、修改职位信息--备份select*intoT_ORG_POSITION1220fromT_ORG_POSITION;select*intoT_ORG_POSITIONHis1220fromT_ORG_POSITIONHis;--修改xxx编码的职位的生效日期为2016-11-01updateT_ORG_POSITIONsetFEFFDT={ts'2016-11-01'}whereFNUMBER='xxx';updateT_ORG_POSITIONHissetFEFFDT={ts'2016-11-01'}whereFNUMBER='xxx';15、删除某组织下所有员工的信息删除员工信息需要删除多个表中信息,包含T_HR_PersonPosition、T_HR_PersonPositionhis、T_HR_EmpLaborRelation、T_HR_EmpLaborRelationhis、T_org_PositionMember、T_HR_EmpFlowInout、T_HR_EmpPostExperienceHis、t_bd_person、t_bd_personhis//--以下内容为删除指定组织下所有人员的T_HR_PersonPosition表中的信息-职业信息表selectfdisplayName_l2fromt_org_adminwherefname_l2='天津市机电职业技术学院'---百利装备_天津市机电职业技术学院//--**查询职业技术学院全名称**SELECT*FROMT_ORG_ADMINwherefname_l2select*fromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%'))//--**查询职业技术学院下所有人员信息**select*intoT_HR_PersonPosition0608fromT_HR_PersonPosition//--**备份职业信息表**select*fromT_HR_PersonPosition0608//--**查询是否备份成功**SELECT*FROMT_HR_PersonPositionwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')));//--**查询职业技术学院下所有人员的职业信息**deleteFROMT_HR_PersonPositionwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionwherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')))//--**删除职业技术学院下所有人员的职业信息**//--以下内容为删除指定组织下所有人员的T_HR_PersonPositionhis表中的信息-职业信息历史表select*intoT_HR_PersonPositionhis0608fromT_HR_PersonPositionhis//--**备份职业信息历史表**select*fromT_HR_PersonPositionhis0608//--**查询是否备份成功**SELECT*FROMT_HR_PersonPositionhiswherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionhiswherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')));//--**查询职业技术学院下所有人员的职业信息历史表**deleteFROMT_HR_PersonPositionhiswherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionhiswherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')))//--**删除职业技术学院下所有人员的职业信息历史表**//--以下内容为删除指定组织下所有人员的T_HR_EmpLaborRelation表中的信息-员工用工关系表select*intoT_HR_EmpLaborRelation0608fromT_HR_EmpLaborRelation//--**备份员工用工关系表**select*fromT_HR_EmpLaborRelation0608//--**查询是否备份成功**SELECT*FROMT_HR_EMPLABORRELATIONwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')));//--**查询职业技术学院下所有人员的用工关系表**-deleteFROMT_HR_EMPLABORRELATIONwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionhiswherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')))//--**删除职业技术学院下所有人员的用工关系表**//--以下内容为删除指定组织下所有人员的T_HR_EmpLaborRelationhis表中的信息--员工用工关系历史表select*intoT_HR_EmpLaborRelationhis0608fromT_HR_EMPLABORRELATIONHIS//--**备份职业信息历史表**select*fromT_HR_EmpLaborRelationhis0608//--**查询是否备份成功**SELECT*FROMT_HR_EMPLABORRELATIONhiswherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')));//--**查询职业技术学院下所有人员的用工关系历史表**-deleteFROMT_HR_EMPLABORRELATIONhiswherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromt_hr_personpositionhiswherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')))//--**删除职业技术学院下所有人员的用工关系历史表**//--以下内容为删除指定组织下所有人员的T_ORG_POSITIONMEMBER表中的信息-职员任职情况select*intoT_ORG_POSITIONMEMBER0608fromT_ORG_POSITIONMEMBER//--**备份职员任职情况表**select*fromT_ORG_POSITIONMEMBER0608//--**查询是否备份成功**SELECT*FROMT_ORG_POSITIONMEMBERwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')));//--**查询职业技术学院下所有人员的任职情况表**-deleteFROMT_ORG_POSITIONMEMBERwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')))//--**删除职业技术学院下所有人员的任职情况表**//--以下内容为删除指定组织下所有人员的T_HR_EMPFLOWINOUT表中的信息-员工工作信息select*intoT_HR_EMPFLOWINOUT0608fromT_HR_EMPFLOWINOUT//--**备份员工工作信息表**select*fromT_HR_EMPFLOWINOUT0608//--**查询是否备份成功**SELECT*FROMT_HR_EMPFLOWINOUTwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')));//--**查询职业技术学院下所有人员的员工工作信息表**-deleteFROMT_HR_EMPFLOWINOUTwherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')))//--**删除职业技术学院下所有人员的员工工作信息表**//--以下内容为删除指定组织下所有人员的EmpPostExperienceHis表中的信息-员工任职经历历史select*intoT_HR_EmpPostExperienceHis0608fromT_HR_EmpPostExperienceHis//--**备份员工任职经历历史**select*fromT_HR_EmpPostExperienceHis0608//--**查询是否备份成功**SELECT*FROMT_HR_EmpPostExperienceHiswherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')));//--**查询职业技术学院下所有人员的员工任职经历历史表**-deleteFROMT_HR_EmpPostExperienceHiswherefpersonidin(selectfidfromt_bd_personwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%')))//--**删除职业技术学院下所有人员的员工任职经历历史表**//--以下内容为删除指定组织下所有人员的T_BD_PERSON表中的信息-员工个人信息select*intoT_BD_PERSON0608fromT_BD_PERSON//--**备份员工个人信息**select*fromT_BD_PERSON0608//--**查询是否备份成功**SELECT*FROMT_BD_PERSONwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%'));//--**查询职业技术学院下所有人员的员工任职经历历史表**-deleteFROMT_BD_PERSONwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%'))//--**删除职业技术学院下所有人员的员工任职经历历史表**//--以下内容为删除指定组织下所有人员的T_BD_PERSONhis表中的信息-员工个人信息历史select*intoT_BD_PERSONhis0608fromT_BD_PERSONHISs//--**备份员工个人信息历史表**select*fromT_BD_PERSONhis0608//--**查询是否备份成功**SELECT*FROMT_BD_PERSONhiswherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%'));//--**查询职业技术学院下所有人员的员工个人信息历史表**-deleteFROMT_BD_PERSONwherefidin(selectfpersonidfromT_HR_PersonPosition0608wherefpersondepin(selectfidfromt_org_adminwherefdisplayName_l2like'百利装备_天津市机电职业技术学院%'))//--**删除职业技术学院下所有人员的员工个人信息历史表**