What is the difference between int and integer in MySQL 5.0?

Viewed 42320

What is the difference between int and integer datatypes in MySQL 5.0? Can anyone help? I don't understand the exact difference.

4 Answers

I guess the only difference is the spelling.

So by using INT, you'd end up using less bytes on your SQL script (not that it matters).

Related