D
D
Dronoti2014-09-22 12:55:59
MySQL
Dronoti, 2014-09-22 12:55:59

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?
ebee7eec69f1470aa7115807fb8d742a.jpg
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

4 answer(s)
R
Rsa97, 2016-09-22
@esvlad

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

A
Anton, 2016-09-22
@sHinE

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

S
sim3x, 2016-09-22
@sim3x

stackoverflow.com/questions/2300322/intersect-in-mysql

G
gleb_kudr, 2014-09-22
@Dronoti

Red is first.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question