I have this output from a mysql export:
<?xml version="1.0"?>
<resultset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" statement="select product as sample,count(*) as count from table1 where itemno in (5,10,37) and type='food' and package='boxed' group by package,product order by count(*),product desc limit 5 ">
<row>
<sample>cereal</sample>
<count>1</count>
</row>
<row>
<sample>macaroni</sample>
<count>1</count>
</row>
<row>
<sample>cookies</sample>
<count>2</count>
</row>
<row>
<sample>rice</sample>
<count>2</count>
</row>
<row>
<sample>stuffing</sample>
<count>7</count>
</row>
</resultset>
I want to use xslt to replace <resultset xmlns:xsi=......> and </resultset> with another tag, like <groceries xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"></groceries>, but without the query statement included.
Suggestions?