Jun 4, 2002 #1 LimonaM Programmer Joined Oct 27, 2004 Messages 50 Location SI how to put 0,001 into item and not .001? Where can i and how describe mask for numbers so the first zero won't be erased?
how to put 0,001 into item and not .001? Where can i and how describe mask for numbers so the first zero won't be erased?
Jun 4, 2002 Thread starter #2 LimonaM Programmer Joined Oct 27, 2004 Messages 50 Location SI Item tyoe is char, because there aren't allways numbers. I just need the leading null(0). Upvote 0 Downvote
Jun 4, 2002 #4 Mockenrue Programmer Joined May 15, 2002 Messages 40 Location NL Something like: column_char := to_char( p_number , '99999990D000' , 'NLS_NUMERIC_CHARACTERS = '',.''' ); Arthur Upvote 0 Downvote
Something like: column_char := to_char( p_number , '99999990D000' , 'NLS_NUMERIC_CHARACTERS = '',.''' ); Arthur