im using oracle 9i. when i first made my table I put in "NULL" for my null values, but my friend told me I need to use '' if they are null. so how can update all the records in a table to '' where = 'Null" ?? please tell me if I'm not clear.
i used this query (with my table and column names)
select * from suppliers
where supplier_name is null;
but it won't run on the tables that I inserted "NULL" into. So, is there a way to update all the rows in my table where they say NULL and change them to '' ?