dzdevel commited on
Commit
0f7b9f0
·
verified ·
1 Parent(s): 71ef0c7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # App Store Data (November 2025)
2
+
3
+ This repository contains sample database with 1,000 apps. The full
4
+ database has 1,165,456 applications.
5
+
6
+ ## Selects
7
+
8
+ Open the database using any SQLite3 GUI app (e.g. SQLiteStudio or SQLiteBrowser)
9
+ and make some queries. Some examples are below.
10
+
11
+ ### Most Expensive Non-Free Apps
12
+
13
+ SELECT
14
+ s.canonical_url,
15
+ s.app_name,
16
+ s.currency,
17
+ s.total_ratings,
18
+ s.rating_average,
19
+ a.category,
20
+ a.subcategory,
21
+ MAX(s.price / 100.0 / cr.rate) AS usd_price
22
+ FROM stores s
23
+ JOIN apps a
24
+ ON a.int_id = s.int_app_id
25
+ JOIN currency_rates cr
26
+ ON cr.currency = s.currency
27
+ GROUP BY s.canonical_url
28
+ ORDER BY usd_price DESC, s.int_app_id ASC
29
+ LIMIT 1000;
30
+
31
+ ### Most Expensive IAP Products
32
+
33
+ SELECT
34
+ s.canonical_url,
35
+ s.app_name,
36
+ s.currency,
37
+ s.total_ratings,
38
+ s.rating_average,
39
+ a.category,
40
+ a.subcategory,
41
+ iap.product,
42
+ iap.price / 100.0 / cr.rate AS usd_price
43
+ FROM stores s
44
+ JOIN apps a
45
+ ON a.int_id = s.int_app_id
46
+ JOIN in_app_products iap
47
+ ON iap.int_store_id = s.int_id
48
+ JOIN currency_rates cr
49
+ ON cr.currency = iap.currency
50
+ GROUP BY s.canonical_url
51
+ ORDER BY usd_price DESC, s.int_app_id ASC
52
+ LIMIT 1000;