I want to filter the records that COMMENTS attribute is null
I have tried
SELECT TABLE_NAME, COMMENTS FROM
(SELECT TABLE_NAME, COMMENTS FROM (select * FROM user_tab_comments))
WHERE COMMENTS != null;
But it didn't return the right output. How can I do it?
