摘要:
###一、分析函数的语法 语法: 函数名([参数]) over(partition by [分组字段] order by [排序字段] asc/desc rows/range between 起始位置 and 结束位置) 函数解读: 函数分为两个部分 第一部分是函数名称,开窗函数的数量较少,只有11 阅读全文
摘要:
###Hive的case when语法 方法一: case when tb1.os = 'android' then 'android' when tb1.os = 'ios' then 'iPhone' else 'PC' end as os 方法二: case tb1.os when 'andr 阅读全文
摘要:
###jdbc连接Oracle 最近使用jdbc连接oracle时报错: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor The Connection descriptor used 阅读全文