sql drupal count login
1 2 SELECT u.name name, count(name) anzahl 3 FROM accesslog al, users u 4 where al.uid = u.uid group by name order by anzahl
12946 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 SELECT u.name name, count(name) anzahl 3 FROM accesslog al, users u 4 where al.uid = u.uid group by name order by anzahl
1 2 SELECT u.name name, 3 DATE(FROM_UNIXTIME(al.timestamp)) ladate 4 5 FROM accesslog al, users u 6 where al.uid = u.uid order by ladate desc