insert into Resume(userId,userName,companyId,link,gender,birthday,dutyLevel,deptId,deptName,stationId,stationName) 
Select 
a.userId as userId ,
a.firstName+a.lastName as userName,
a.companyId as companyId,
a.emailAddress, 
e.male as gender,
e.birthday as birthday,
e.securityLevel as dutyLevel,
org.organizationId as deptId,
org.name as deptName,
St.Soid As Stationid,
St.Stationname As Stationname from 
User_ as a 
inner join 
Contact_ as e
on 
e.contactId = a.contactId
left join
StationOrg as st 
on
e.prefixid = st.soId
left join 
Users_Orgs as uorg
on
uorg.userId = a.userId
left join 
Organization_ as org
on
org.organizationId=uorg.organizationId
where  
   a.userId <>2 
   and 
   a.userId <>5