count_users
Count the total number of users.
To retrieve the total number of users.
CREATE FUNCTION count_users() RETURNS BIGINT AS 'select count(identifier) from users' LANGUAGE 'sql';
Version 2.5
Still in use
= Version 2.5 =
CREATE FUNCTION count_users() RETURNS BIGINT AS 'select count(identifier) from users' LANGUAGE 'sql';