dzdevel commited on
Commit
5541aa0
·
verified ·
1 Parent(s): 0f7b9f0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -10,6 +10,7 @@ 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,
@@ -27,9 +28,11 @@ JOIN currency_rates cr
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,
@@ -50,3 +53,4 @@ JOIN currency_rates cr
50
  GROUP BY s.canonical_url
51
  ORDER BY usd_price DESC, s.int_app_id ASC
52
  LIMIT 1000;
 
 
10
 
11
  ### Most Expensive Non-Free Apps
12
 
13
+ ```SQL
14
  SELECT
15
  s.canonical_url,
16
  s.app_name,
 
28
  GROUP BY s.canonical_url
29
  ORDER BY usd_price DESC, s.int_app_id ASC
30
  LIMIT 1000;
31
+ ```
32
 
33
  ### Most Expensive IAP Products
34
 
35
+ ```SQL
36
  SELECT
37
  s.canonical_url,
38
  s.app_name,
 
53
  GROUP BY s.canonical_url
54
  ORDER BY usd_price DESC, s.int_app_id ASC
55
  LIMIT 1000;
56
+ ```