Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
TRANSFORM Count(dbo_ni_used_sales_2006.unique_id) AS CountOfunique_id
SELECT dbo_ni_used_sales_2006.Make_Code, Count(dbo_ni_used_sales_2006.unique_id) AS [Total Of unique_id]
FROM dbo_ni_used_sales_2006
GROUP BY dbo_ni_used_sales_2006.Make_Code
PIVOT dbo_ni_used_sales_2006.Year;