Trying to rack my brain for a while, lots of Googling, but to no avail. I have a data set that has the following fields I need to query: DEPT,NUM,TERM,ITLE. I have the following possible rows.
DEPT--NUM---TERM------TITLE
OSS - 1550 - 200830 - COURSE NAME (CI)
OSS - 1550 - 200930 - COURSE NAME (CI)
OSS - 1550 - 201230 - COURSE NAME
ENG - 1600 - 200930 - OTHER COURSE (CI)
OSS - 1600 - 200830 - ANOTHER COURSE (CI)
USS - 2500 - 201240 - COURSE (CI)
PSY - 1600 - 200830 - COURSE TITLE
What I need to do is query a table with data such as this and then pull the DEPT/NUM (OSS 1550) where the title matches a query ONLY IF it's the latest title.
So if I do a search for (CI) I want 3 results using the set above (ENG 1600, OSS 1600, ISS 2500), because 201230 is the latest entry for OSS 1550 I don't want that one, but I do want the others. Right now I cannot for the life of me figure out how to write a query that will do that.
Any help would be appreciated. Let me know if I am not clear enough.
EDIT
I am only getting a single record, here is what I am using based on what you have said SELECT data.* FROM ( SELECT SCBCRSE_SUBJ_CODE || ' ' || SCBCRSE_CRSE_NUMB AS crs_combo, SCBCRSE_TITLE as title, row_number() over (ORDER BY SCBCRSE_EFF_TERM DESC, SCBCRSE_CRSE_NUMB DESC) as term FROM SCBCRSE WHERE (SCBCRSE_TITLE LIKE '%' || :srch || '%') ) data WHERE data.term = 1
My formatting is now working... no idea why I have four spaces.
EDIT AGAIN I guess I didn't provide enough sample data... see edited table above. I need the three records with unique DEPT/NUM and the CI in the title, but not the one with older titles and CI. Make sense.
Sorry for not being clear.
ANSWER... here is the winner.
SELECT data.*
FROM (
SELECT SCBCRSE_SUBJ_CODE || ' ' || SCBCRSE_CRSE_NUMB AS crs_combo,
SCBCRSE_TITLE as title,
row_number() over (partition by SCBCRSE_SUBJ_CODE,SCBCRSE_CRSE_NUMB ORDER BY SCBCRSE_EFF_TERM DESC) as seqnum
FROM SCBCRSE
) data
WHERE seqnum = 1 AND title LIKE '%' || :srch || '%'
Thanks for your help everyone. I wasted hours on this and you answered it in minuets.
