Hi,
I work the IS dept. for a small credit union. I am using SQL Server 7 and I'm not sure what else you need to know.
I am trying to create a query for a report that summarizes our loan underwriters' response times. The data needs to be limited to applications from only 2 out of several underwriters and must contain all status records for those applications that are captured in our Lending system from each of the two user's acting on the loans.
What we are looking to analyze is the following:
1.) Date/Time from which last communication from the MSR to the Loan Underwriter
2.) Date/Time from which the loan was underwritten to when the loan was booked.
These times are being analyzed for quick turnaround date & times for our members.
The data is primarily coming from the APL and STL tables. The APL table contains the main application info. and the loan status codes are in the STL table. The rest of the tables are required for linking purposes or to provide attributal information.
I am not very good with T-SQL. I copied this from the View wizard. I have even tried left outer joins.
***********************************************************
This is the code:
************************************************************
The STATUSER[underwriters] can act on the loan application any number of times and each action is assign a SEQNUM and these action/status records are stored in the STL table along with the STATUSER number.
In the code above, where I've restricted the STATUSER to 425 or 429, in regards to the SEQNUM's for underwriters 425 and 429, I am getting regards returned only for these two STATUSERs. I need all the SEQNUM'S for applications that STATUSER'S 425 and 429 acted on, starting with SEQNUM 1.
I have a feeling a subquery would work, but, am unable to figure out the syntax.
Would someone be able to assist me?
Thanks, Laura
I work the IS dept. for a small credit union. I am using SQL Server 7 and I'm not sure what else you need to know.
I am trying to create a query for a report that summarizes our loan underwriters' response times. The data needs to be limited to applications from only 2 out of several underwriters and must contain all status records for those applications that are captured in our Lending system from each of the two user's acting on the loans.
What we are looking to analyze is the following:
1.) Date/Time from which last communication from the MSR to the Loan Underwriter
2.) Date/Time from which the loan was underwritten to when the loan was booked.
These times are being analyzed for quick turnaround date & times for our members.
The data is primarily coming from the APL and STL tables. The APL table contains the main application info. and the loan status codes are in the STL table. The rest of the tables are required for linking purposes or to provide attributal information.
I am not very good with T-SQL. I copied this from the View wizard. I have even tried left outer joins.
***********************************************************
This is the code:
Code:
SELECT dbo.apl.APLNUM, dbo.stl.LONNUM, dbo.apl.ORIGDATE, dbo.apl.ORIGTIME,
dbo.stl.SEQNUM, dbo.stl.STATUSER, dbo.stl.STATDATE, dbo.stl.STATTIME, dbo.stl.STATUS, dbo.apl.ORGBRNCH
FROM dbo.lon INNER JOIN
dbo.stl INNER JOIN
dbo.alo INNER JOIN
dbo.apl ON dbo.alo.APLNUM = dbo.apl.APLNUM ON dbo.stl.APLNUM = dbo.apl.APLNUM
ON dbo.lon.LONNUM = dbo.alo.LONNUM
WHERE (dbo.stl.SEQNUM > 0) AND (dbo.apl.ORGBRNCH < 7) AND
(dbo.apl.ORIGDATE >= CONVERT(DATETIME, '2005-12-01 00:00:00', 102)) AND (dbo.stl.STATUSER = 425 OR
dbo.stl.STATUSER = 429)
ORDER BY dbo.apl.APLNUM, dbo.stl.SEQNUM
************************************************************
The STATUSER[underwriters] can act on the loan application any number of times and each action is assign a SEQNUM and these action/status records are stored in the STL table along with the STATUSER number.
In the code above, where I've restricted the STATUSER to 425 or 429, in regards to the SEQNUM's for underwriters 425 and 429, I am getting regards returned only for these two STATUSERs. I need all the SEQNUM'S for applications that STATUSER'S 425 and 429 acted on, starting with SEQNUM 1.
I have a feeling a subquery would work, but, am unable to figure out the syntax.
Would someone be able to assist me?
Thanks, Laura