Jump to content

does smallint allow decimal numbers?


daydreamer

Recommended Posts

I am using a Mysql database, and need to store numbers similar to these: 1.32, 22.23, 99.99, 0.00.

 

Can I use "smallint" as the data type?

 

I could use the "decimal" type, but in the mysql manual it shows numbers like this 1.2342324323, all i need is two decimal places!

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/125798-does-smallint-allow-decimal-numbers/
Share on other sites

ok, thanks. how can i set it up so any numbers from 0.00 to 999.99 can be entered?

 

from the mysql manual:

 

salary DECIMAL(5,2)

 

this allows 99999.99.

 

So i need (3,2).

 

I am using phpmyadmin to create the column, do I just place "3,2" (without marks) into the "Length/Values" when creating the column?

 

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.