摘要:
下载地址 https://mirrors.cloud.tencent.com/openssl/source/ 安装 tar -zxvf openssl-1.1.1w.tar.gz cd openssl-1.1.1w ./config --prefix=/usr/local/openssl make 阅读全文
摘要:
Hive中EXISTS的底层实现实际上是LEFT SEMI JOIN。这种转换方式性能最优,执行计划与EXISTS完全一致。 oracle: SELECT a.* FROM table1 a WHERE EXISTS (SELECT 1 FROM table2 b WHERE a.id = b.id 阅读全文