Hi All,
I have a xml as given below . I need to parse this and retrieve the employee ids present in it and insert into a table.
declare @data xml='<employeelist>
<employeeid>7830</employeeid>
<employeeid>7831</employeeid>
<employeeid>7832</employeeid>
</employeelist>';
Thanks