空の文字列をデータベーステーブルの列に挿入すると、内部的にはNULL
として格納されているように見えます。では、空の文字列を正確に探して、それぞれの行を選択できないのはなぜですか?oracleの空の文字列
例:
insert into mytable (mycolumn,col2,col3) values ('','xyz','abc');
// now there is a row having mycolumn == NULL
select * from mytable where mycolumn='';
// empty :(
私はそれについて何ができますか?
関連http://stackoverflow.com/questions/203493/why-does-oracle-9i-treat-an-empty-string-as-null/203536#203536 –