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.
SELECT Round(([UnitPrice]*1000)/1212,0) AS RndToNoDec
FROM Products;
SELECT Category, Subcategory, Count(Category) AS CountOfcategory,
Sum(Hits) AS SumOfHits, Max(Field8) AS [Hits Max],
Round ( Count(Category) / Sum(Hits) , 0 ) As [Ratio]
FROM Monthly_hits_final_april06
GROUP BY Category, Subcategory;