Jun 23, 2003 #1 hoggle Programmer Jul 13, 2001 124 US I'm creating some new tables and I want to store leading zeros on an int field, is this possible or do I have to use a varchar or equivilent? thanks
I'm creating some new tables and I want to store leading zeros on an int field, is this possible or do I have to use a varchar or equivilent? thanks
Jun 23, 2003 #2 JohnDTampaBay Programmer Jul 12, 2002 986 US INT datatype will not store the leading zeros. You will have to use a CHAR or VARCHAR datatype. --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding. Upvote 0 Downvote
INT datatype will not store the leading zeros. You will have to use a CHAR or VARCHAR datatype. --Angel ----------------------------------- Every time I lose my mind, I wonder if it's really worth finding.