I want to find the name, pic and page_url of the pages which installed my application.
So I created this query:
SELECT pic, name, page_url FROM page WHERE page_id IN (SELECT page_id FROM page WHERE has_added_app = 1)
What's wrong? I understood that the "WHERE" has to be with indexable parameters - "page_id" is indexable parameter but "has_added_app" is not.. but I have to use it.. so how do I do it?
Thank you.