提取数据库XML数据PHP

I have a .db file named master.db this database contains a Table Named Athletes witch contains all the athletes that have run the event over the past few years. Each Row is unique they have added the "Previous Race History" in columns named UltraMarathon this column has the below xml/type data in it.

How do I extract this info out recursively from the Column in the row? As just pulling the value does not even display it as text?

<CSML defaultLocale="EN" xmlns="http://bacnet.org/csml/1.1">
<Sequence type="123-ForeverEvents.LoskopAthleteRegister">
<Array name="history">
  <Sequence>
    <Enumerated name="status" value="finished"/>
    <Int64 name="position" value="0"/>
    <Unsigned name="year" value="1998"/>
    <Int64 name="raceNumber" value="2001"/>
    <Unsigned name="estimatedFinishes" value="3"/>
  </Sequence>
  <Sequence>
    <Enumerated name="status" value="finished"/>
    <Int64 name="position" value="0"/>
    <Unsigned name="year" value="1999"/>
    <Int64 name="raceNumber" value="2001"/>
    <Unsigned name="estimatedFinishes" value="4"/>
  </Sequence>
  <Sequence>
    <Enumerated name="status" value="finished"/>
    <Int64 name="position" value="0"/>
    <Unsigned name="year" value="2000"/>
    <Int64 name="raceNumber" value="2001"/>
    <Unsigned name="estimatedFinishes" value="4"/>
  </Sequence>
  </Array>
  </Sequence>
  </CSML>

Ideally I would like to export this info into its own table and link to it via athlete ID