32-Hive SQL DML语法之查询数据

1.Select语法树

复制代码
从哪里查询取决于FROM关键字后面的table_reference,
这是我们写查询SQL的首先要确定的事即你查询谁?
表名和列名不区分大小写。

案例:在数据集中有一份数据文件《us-covid19-counties.dat》,里面记录了2021-01-28美国各个县累计新冠确诊病例数和累计死亡病例数。

bash 复制代码
use liushao;
drop table if exists t_usa_covid19;
CREATE TABLE t_usa_covid19(
    count_date string,
    county string,-- 美国的县郡
    state string, -- 哪个洲
    fips int, --邮政编码
    cases int,--累计确诊病例
    deaths int)--死亡人数
row format delimited fields terminated by ",";

-- 加载数据
load data local inpath '/export/data/hivedata/covid19-counties.dat' into table liushao.t_usa_covid19;


select * from t_usa_covid19;

--  1. 查询 美国鬼子  美国的县郡  哪个洲 死了多少人
select county,state,deaths from t_usa_covid19;

select 1 from t_usa_covid19;

-- 2.我想看一下你目前正在使用哪个数据库
select  current_database();


--  3.匹配所有的行 (看 洲)
select state from t_usa_covid19;
-- 相当于
select all state from t_usa_covid19;


-- 4.数据去除重复
select distinct state from t_usa_covid19;

-- 5.使用条件
-- 一大于二十不成立的 返回 false ,不能查询到结果
select * from t_usa_covid19 where 1 > 2;

-- 六等于六成立 返回 true ,能查询到结果
select * from t_usa_covid19 where 6 =6;


-- 6.查找加利福尼亚州的 疫情数据
select * from t_usa_covid19 where state='California';

--  7.使用一下函数  长度  length() 查询州字母长度超过10位的
select * from t_usa_covid19 where length(state)>10;


--  8. 查询死亡人数超过100  的州  不能执行
--注意:where条件中不能使用聚合函数
-- --报错 SemanticException:Not yet supported place for UDAF 'sum'
--聚合函数要使用它的前提是结果集已经确定。
--而where子句还处于"确定"结果集的过程中,因而不能使用聚合函数。
-- select state,sum(deaths) from t_usa_covid19 where sum(deaths)>100 group by state;

select state,sum(deaths) from t_usa_covid19 group by state having sum(deaths)>100 ;

--9 查询 美国共有多少个的县郡   结果是: 3245

select  county from t_usa_covid19;

select  count(county) as county_nums from t_usa_covid19;

-- 去除重复的县郡  1930
select  count(distinct county) as county_nums from t_usa_covid19;



-- 10 查询一下美国加州有多少个县
select count(county) from t_usa_covid19 where state='California';

-- 11 统计德州总的死亡病例数
select sum(deaths) from  t_usa_covid19 where state='Texas';

-- 12 统计美国最高确诊病例是哪个县
select  max(cases) from  t_usa_covid19;


-- 回去 看看  group by   limit   order by  等 。。。
相关推荐
运维帮手大橙子1 小时前
完整的登陆学生管理系统(配置数据库)
java·前端·数据库·eclipse·intellij-idea
0wioiw01 小时前
Redis(④-消息队列削峰)
数据库·redis·缓存
Runing_WoNiu2 小时前
Mysql与Ooracle 索引失效场景对比
数据库·mysql·oracle
JIngJaneIL2 小时前
专利服务系统平台|个人专利服务系统|基于java和小程序的专利服务系统设计与实现(源码+数据库+文档)
java·数据库·小程序·论文·毕设·专利服务系统平台
__风__2 小时前
windows 上编译PostgreSQL
数据库·postgresql
木木子99993 小时前
数据库范式
数据库
涛思数据(TDengine)3 小时前
通过最严时序标准,再登产业图谱榜首,TDengine 时序数据库在可信数据库大会荣获双荣誉
大数据·数据库·时序数据库·tdengine·涛思数据
涛思数据(TDengine)3 小时前
新客户 | TDengine 时序数据库是怎么在钢厂“撬动”PI 的?
大数据·运维·数据库·时序数据库·tdengine
程序员柳3 小时前
基于Flask + Vue3 的新闻数据分析平台源代码+数据库+使用说明,爬取今日头条新闻数据,采集与清洗、数据分析、建立数据模型、数据可视化
数据库·数据分析·flask