I have a text field that contains an HTML table in a PostgreSQL database. I would like to extract some data from this field: each TR (not from the header) in a row and each TD in a column. Is that possible?
The name of a table is "documentos" and the name of the text field that contains the HTML table is called "props". Props contains following:
select props
from documentos
where uidref = 'ee41f201-0049-41e9-9c5d-5c35e2cf73ac'
And I would like obtain:
444444444 | Investigador | Daniel | Perez
555555555 | Becario | Jorge | Fernandez
Thanks in advance!