Skip to content

Commit

Permalink
update sql docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fengzhao committed Oct 22, 2024
1 parent a4da5c9 commit 0c62a5a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/olap/01.OLAP概述.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,6 @@ su - postgres
cd /data/postgres/14.4/bin/
psql -h localhost -p 54321 -U postgres -w password -d postgres


#

# 导入数据
\i /data/PGAdvanceSQL/src/main/source/gdpdata.sql

Expand All @@ -389,7 +386,7 @@ postgres=# \dt
public | country_gdp_year_final | table | postgres
public | metadata_country | table | postgres

# 作者的一些原始数据中,有些GDP为0可能不准。
# 作者的一些原始数据中,有些GDP为0可能不准。注意甄别

# country_gdp_year(国家名称,国家代码,指标名称,指标代码,年份,GPD数值)
postgres=# select * from country_gdp_year limit 3;
Expand All @@ -399,6 +396,8 @@ postgres=# select * from country_gdp_year limit 3;
阿鲁巴 | ABW | GDP(现价美元) | NY.GDP.MKTP.CD | 1961 | 0
阿鲁巴 | ABW | GDP(现价美元) | NY.GDP.MKTP.CD | 1962 | 0
postgres=#

# country_gdp_year_final(国家代码,国家名称,收入分类,所属地区,年份,GDP值)
postgres=# select * from country_gdp_year_final limit 3;
country_code | country_name | income_group | region | year | gdp
--------------+--------------+--------------+------------+------+------------------
Expand All @@ -422,11 +421,11 @@ postgres=#

```SQL

-- 世界各个大洲(区域)2017年的GDP平均值
-- 世界各个大洲(区域)2017年的GDP平均值:对于2017年的GPD,按洲分组,求各洲平均值
-- 2017年世界GDP均值最高地区是:北美洲,GDP最低地区是:撒哈拉以南非洲
SELECT
region,
round(AVG(gdp),0)
round(AVG(gdp),0)
FROM
country_gdp_year_final
WHERE
Expand Down

0 comments on commit 0c62a5a

Please sign in to comment.