<?xml version="1.0"?>
<appml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.refsnesdata.no/appml.xsd">
<database>
	<connection>northwind</connection>
</database>

<htmlreport name="ten_most_expensive">
<title>10 MOST EXPENSIVE PRODUCTS</title>
<sql>
SELECT TenMostExpensiveProducts AS [Product Name],UnitPrice AS [Price per Unit]
FROM [Ten Most Expensive Products]
ORDER BY UnitPrice DESC
</sql>
</htmlreport>

<htmlreport name="category_sales_1997">
<title>CATEGORY SALES FOR 1997</title>
<sql>
SELECT CategoryName,CategorySales
FROM [Category Sales for 1997]
ORDER BY CategoryName
</sql>
</htmlreport>

</appml>
