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…
关于 Cloud Studio Cloud Studio 是基于浏览器的集成式开发环境(IDE),为开发者提供了一个永不间断的云端工作站。用户在使用Cloud Studio 时无需安装,随时随地打开浏览器就能在线编程。 Cloud Studio 作为在线IDE,包含代码高亮、自动补全、Gi…