I'm digging through HRHISTORY to query for USER_ID / EMPLOYEE ID to create a list of EMPLOYEE that have changed their ADDRESS recently. Do you have any experience with that?
So the query should look something like this:
select FIRST_NAME, LAST_NAME, ADDR1, ADDR2, ADDR3, ADDR4, CITY, STATE, ZIP, convert(datetime,DATE_STAMP,101) AS DATE_STAMP from HRHISTORY right join EMPLOYEE on EMPLOYEE.EMPLOYEE = HRHISTORY.EMPLOYEE where convert(datetime,DATE_STAMP,101) > {current time - 14 days}
Thanks, Dave. Yes, I've figured it out.