There was an error while loading. Please reload this page.
COUNT
Summing aggregator.
Syntax:
COUNT([DISTINCT] expression | *)
AlaSQL supports COUNT() aggregator:
COUNT()
SELECT COUNT(*) FROM one; SELECT COUNT(a) FROM one;
Also you can use COUNT() with DISTINCT keyword to count all non repeated values:
DISTINCT
SELECT COUNT(DISTINCT a) FROM one;
Quick links
AlaSQL wiki frontpage
About AlaSQL
Install AlaSQL
Get started with AlaSQL