Is this set somehow in a variable?
Is it possible to store decimal values in INT fields or does it have to be FLOAT?
Comma or point as a separator? Or does it even matter?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Commas aren’t stored in the table…they’re represented that way in whatever you’re viewing the data with.
For decimal numbers, no you cannot use
INT, it only accepts whole numbers, you likely wantDECIMALfor this (So you don’t get the odd 0.3999999999999999999999999999999 that can’t be stored quite right in the float).