I have some XML (attached) and what I want is a SQL statement that will return 001 and 002 (ExcludedDriverId). The SQL I wrote (below), only returns 001. Any help?
SELECT *
FROM OPENXML (@xml_he, '//PersUmbrellaLineBusiness/BasicWatercraftInfo',2)
WITH (
ExcludedDriverId varchar(100) 'ExcludedDriverId'
) T1
Thanks!
Michael