三生暮雨渡瀟瀟 2021-12-18 21:13 采纳率: 20%
浏览 169
已结题

hive查询,使用where子查询没有返回结果

问题遇到的现象和发生背景

测试where语句,第二种语句返回0行数据

问题相关代码,请勿粘贴截图

```sql
select e.* from
(select name, salary, deductions["Federal Taxes"] as ded,
  salary * (1 - deductions["Federal Taxes"]) as salary_minus_fed_taxes from employees) e
where round(e.salary_minus_fed_taxes) > 70000;
------------------------结果-------------------------------
+------------+-----------+--------+---------------------------+
|   e.name   | e.salary  | e.ded  | e.salary_minus_fed_taxes  |
+------------+-----------+--------+---------------------------+
| John Doe   | 100000.0  | 0.2    | 80000.0                   |
| John Bob   | 300000.0  | 0.4    | 180000.0                  |
| John Bill  | 200000.0  | 0.3    | 140000.0                  |
+------------+-----------+--------+---------------------------+
----------------------------第二种方式:
select name, salary, deductions["Federal Taxes"] as ded,
  salary * (1 - deductions["Federal Taxes"]) as salary_minus_fed_taxes from employees
where (select salary * (1 - deductions["Federal Taxes"]) from  employees) = 80000.0;
----------------结果--------------------------------------
+-------+---------+------+-------------------------+
| name  | salary  | ded  | salary_minus_fed_taxes  |
+-------+---------+------+-------------------------+
+-------+---------+------+-------------------------+

  • 写回答

1条回答 默认 最新

  • DarkAthena ORACLE应用及数据库设计方案咨询师 2021-12-18 21:48
    关注

    where中又使用了一次emloyees表,和上面的emloyees表没有任何关联关系,你要根据80000.0来定位数据的话,应该是像下面这样写

    select name, salary, deductions["Federal Taxes"] as ded,
      salary * (1 - deductions["Federal Taxes"]) as salary_minus_fed_taxes from employees
    where   salary * (1 - deductions["Federal Taxes"])  = 80000.0;
    

    当然我不确定你这个显示是否有小数位四舍五入,或许要改成

    round(salary * (1 - deductions["Federal Taxes"]) ,1) = 80000.0
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 12月26日
  • 已采纳回答 12月18日
  • 创建了问题 12月18日

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。