null值與任意值比較時都為fasle
not in 、"!"、"not like"條件過濾都會過濾掉null值的數據
SELECT * from temp; SELECT * from temp where score not in (70); 返回null解決方法:
SELECT * from temp where score not in (70) or score is null;SELECT…
詳情可以查看添加鏈接描述
1.安裝jdk
apt-get install openjdk-8-jdk2.安裝單機zookeeper
# 下載
#https://downloads.apache.org/zookeeper/zookeeper-3.7.1/apache-zookeeper-3.7.1.tar.gz
# 用這個包啟動的時候會報錯Error: Could not find or load main class org.apach…