I have a table that has a contents field that is populated with IDs of items on that page. Like this:
ID | Contents
Section-page-id | item-1 item-2 item-3 item-4 item-5
Section-page-id2 | item-6 item-7 item-8 item-9 item-10
I would like to create a temp table that looks like the following:
Section-id |ID
item-1 |Section-page-id
item-2 |Section-page-id
item-3 |Section-page-id
item-4 |Section-page-id
item-5 |Section-page-id
item-6 |Section-page-id2
item-7 |Section-page-id2
item-8 |Section-page-id2
item-9 |Section-page-id2
item-10 |Section-page-id2
Is this even possible? Thanks in advance for your time.