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.
user[tab]property[tab]count
1 [tab]blue [tab]2
1 [tab]red [tab]1
SELECT varUser,
varProperty,
count(varProperty) AS 'Num Instances'
FROM tablename
GROUP BY varUser ASC,
varProperty ASC
varUser varProperty
1 1
1 1
1 2
1 2
1 2
1 3
1 3
1 3
1 3
3 1
3 1
SELECT varProperty, COUNT(DISTINCT varUser)
FROM tablename
GROUP BY varProperty ASC