-- ^^ 님이 쓰신 글:
>> null이 아닌거만 뽑아오고싶은데여
select (column) from table where (column) <> ''로 해보아요
where 컬럼명 is not null로 조건을 주면 널이 아닌것만 가죠 올수 있죠.
select (column) from table where (column) is not null 로 해보세요.