Back to the Query Overview

Executed SQL

Statement
EXPLAIN SELECT photos.id AS photos_id, photos.title AS photos_title, photos.meta_title AS photos_meta_title, photos.description AS photos_description, photos.page_url AS photos_page_url, photos.album_cover AS photos_album_cover, photos.document_id AS photos_document_id, photos.album_id AS photos_album_id, photos.keywords AS photos_keywords, photos."order" AS photos_order, photos.is_published AS photos_is_published, photos.is_active AS photos_is_active, photos.created_by AS photos_created_by, photos.created AS photos_created, photos.last_updated AS photos_last_updated, photos.published_on AS photos_published_on 
FROM photos 
WHERE photos.page_url = %(page_url_1)s AND photos.is_active = true 
 LIMIT %(param_1)s
Time0.5991 ms
Parameters{"param_1": 1, "page_url_1": "our-godown"}

Execution Plan

QUERY PLAN
Limit (cost=0.00..1.10 rows=1 width=240)
-> Seq Scan on photos (cost=0.00..1.10 rows=1 width=240)
Filter: (is_active AND ((page_url)::text = 'our-godown'::text))