EXPLAIN

SQL Explained

Executed SQL
SELECT groups.member_count AS groups_member_count, groups.id AS groups_id, groups.group_name AS groups_group_name, groups.description AS groups_description 
FROM groups 
WHERE groups.group_name = %(group_name_1)s 
 LIMIT %(param_1)s
Time
1.03 ms
QUERY PLAN
Limit  (cost=0.14..8.16 rows=1 width=314)
  ->  Index Scan using uq_groups_group_name on groups  (cost=0.14..8.16 rows=1 width=314)
        Index Cond: ((group_name)::text = 'Superuser'::text)