i am trying to identify the columns of database which has default value NULL or the default value has not been set. for that i am executing the query like..
SELECT T.TABLE_NAME,CL.COLUMN_NAME,CL.DATA_DEFAULT
FROM SYS.USER_TABLES T
JOIN SYS.USER_TAB_COLUMNS CL ON T.TABLE_NAME = CL.TABLE_NAME
WHERE CL.DATA_DEFAULT IS NULL
ORDER BY t.table_name
in output of this query, i am getting the column whose default value is not set (empty), but i am not getting the columns whose default value is NULL