私はいくつかのSQLに問題があります。次のクエリを実行すると:
Select * from teleapp;
たくさんの結果が得られます。多数の空または null データ セルを含む列 (cashwithappyn と呼ばれる) を含む結果。(それらは空に見え、null とは言いません)
列情報は次のとおりです。
ColumnName ID Null? Data Type Histogram Num Distinct Num Nulls Density
CASHWITHAPPYN 54 Y VARCHAR2(1 Byte) Frequency 2 56895 0
次のクエリを実行しようとすると:
Select * from teleapp where cashwithappyn = null;
また
Select * from teleapp where cashwithappyn = '';
また
Select * from teleapp where cashwithappyn not like '';
また
Select * from teleapp where cashwithappyn not in ('Y','N');
または任意のタイプの組み合わせで、cashwithappyn に何もない行をすべて取得できないようです。
何か案は?助けてください。これは私が割り当てられたプロジェクトの最後の部分であり、これを理解する必要があります。
ありがとう。