File size: 1,200 Bytes
0f7b9f0
 
 
 
 
 
 
 
 
 
 
 
5541aa0
0f7b9f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5541aa0
0f7b9f0
 
 
5541aa0
0f7b9f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5541aa0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# App Store Data (November 2025)

This repository contains sample database with 1,000 apps. The full
database has 1,165,456 applications.

## Selects

Open the database using any SQLite3 GUI app (e.g. SQLiteStudio or SQLiteBrowser)
and make some queries. Some examples are below.

### Most Expensive Non-Free Apps

```SQL
SELECT
    s.canonical_url,
    s.app_name,
    s.currency,
    s.total_ratings,
    s.rating_average,
    a.category,
    a.subcategory,
    MAX(s.price / 100.0 / cr.rate) AS usd_price
FROM stores s
JOIN apps a
    ON a.int_id = s.int_app_id
JOIN currency_rates cr
    ON cr.currency = s.currency
GROUP BY s.canonical_url
ORDER BY usd_price DESC, s.int_app_id ASC
LIMIT 1000;
```

### Most Expensive IAP Products

```SQL
SELECT
    s.canonical_url,
    s.app_name,
    s.currency,
    s.total_ratings,
    s.rating_average,
    a.category,
    a.subcategory,
    iap.product,
    iap.price / 100.0 / cr.rate AS usd_price
FROM stores s
JOIN apps a
    ON a.int_id = s.int_app_id
JOIN in_app_products iap
    ON iap.int_store_id = s.int_id
JOIN currency_rates cr
    ON cr.currency = iap.currency
GROUP BY s.canonical_url
ORDER BY usd_price DESC, s.int_app_id ASC
LIMIT 1000;
```