View previous topic :: View next topic
Author
Message
remyx187 Joined: 22 Apr 2008 Posts: 1
Posted: Tue Apr 22, 2008 3:39 pm Post subject: keeping a 0 in front of a random integer
Hi, I have a minor problem with keeping the 0 in front of an integer whenever i insert it into a field.
i.e.
inserting a number such 0123 would be stored as 123 in INT datatype field.
how would i get around to keeping the 0 because its crucial in the work i'm doing. thanks in advance
Back to top
lostboy Joined: 02 May 2004 Posts: 4966 Location: toronto, canada
Posted: Tue Apr 22, 2008 7:24 pm Post subject:
1. make the field a character field (char or varchar) and understand that its a string now
2. handle it in the php code before displaying _________________ Lostboy
Cat, the other other white meat
Please read Posting Etiquette before posting
You can always try Google
Back to top
mwasif Joined: 22 Mar 2008 Posts: 22
Posted: Sun Apr 27, 2008 11:09 am Post subject:
you need to make the column ZEROFILL.
Code: ALTER TABLE table_name CHANGE column_name column_name INT( 11 ) UNSIGNED ZEROFILL NOT NULL
_________________PHP, MySQL, Apache
Back to top
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
Powered by phpBB © 2001, 2005 phpBB Group
PHP Forum :: MySQL Forum :: Java Script Forum