I'm working on Oracle and Perl. I have three fields in a table (A, B, C), and I would like to form, for every row in the table, a string a_b_c using "join". C refers to a date. It can take null values. In that case , this "join" will return a warning "use of uninitialized values in join". I know that i have to select nvl(C,something) so that I get a_b_something when C is null. Can you suggest me what that "something" can be, if I want to distinguish between these rows and other rows.
In short, can I store anything other than a valid date or null value in a date field?