This forum is awesome. I've learned so much, and yet have so much left to learn!
My problem of the day is:
I have a table (SERVICE_CALL_EVENT) with field (SERVICE_CALL_EVENT.NOTES). This is where my technicians enter the notes of an action performed on a call. It can be up to 4000 characters.
I want to extract SERVICE_CALL_EVENT.SERVICE_CALL_ID where the SERVICE_CALL_EVENT.NOTES contains the pattern ???-???? anywhere in the potential 4000 character string. ???-???? typically is numeric text eg: 540-3445 (part number).
I want my end result to look like:
SERVICE CALL ID PART NUMBER
5566 540-3445
5567 No Part
5568 540-3446
5568 340-1111
5568 111-7777
A call can have more than one part ordered & I must reflect that. A call can have no parts ordered & I must also reflect that. I likely will group by service call id
I couldn't find a similar thread on this already.
Thanks.
My problem of the day is:
I have a table (SERVICE_CALL_EVENT) with field (SERVICE_CALL_EVENT.NOTES). This is where my technicians enter the notes of an action performed on a call. It can be up to 4000 characters.
I want to extract SERVICE_CALL_EVENT.SERVICE_CALL_ID where the SERVICE_CALL_EVENT.NOTES contains the pattern ???-???? anywhere in the potential 4000 character string. ???-???? typically is numeric text eg: 540-3445 (part number).
I want my end result to look like:
SERVICE CALL ID PART NUMBER
5566 540-3445
5567 No Part
5568 540-3446
5568 340-1111
5568 111-7777
A call can have more than one part ordered & I must reflect that. A call can have no parts ordered & I must also reflect that. I likely will group by service call id
I couldn't find a similar thread on this already.
Thanks.