Hi,
I've table with data like
ticketid | comments ---------------------- 1234 | > > Ticket ID:TT19027 > > Ticket Title:report debug > > 4567 |> > Ticket ID:TT19028 > > Ticket Title:report debug > >
I'm looking for a function or query that will return
ticketid | ticket_no_part_of_comments 1234 | TT19027 4567 | TT19028
I'm able to use clause like
comments regexp 'Ticket ID:([0-9]*)'but it just returns 1 or 0.
Any suggestions.
Thanks in advance, Anitha