Answer the question
In order to leave comments, you need to log in
Which screenshot will be displayed first in the AppStore?
As you know, the first screenshot uploaded for your application in iTunes Connect is very important, it is displayed on the main page with the description of the application and when searching for it. But in the developer panel, when loading the first screenshot, it gets to the end of the list (to the right), hence the question is how to determine the first screenshot?
Based on my example, which screenshot will be displayed first - blue (1) or red (4)?
Answer the question
In order to leave comments, you need to log in
If the pairs (`id`, `f_id`) are unique, then you can do this:
SELECT `id`
FROM `table`
WHERE `f_id` IN (27, 47)
GROUP BY `id`
HAVING COUNT(`id`) = 2
Maybe something like this through joining the table to itself by f_id?
SELECT t1.id FROM table1 t1 INNER JOIN table1 t2 ON t1.f_id=t2.f_id AND t1.id<>t2.id
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question