2

In MySQL, what is the difference betwen TINYINT(1) and Boolean?

3 Answers 3

4

From the manual:

BOOL, BOOLEAN

These types are synonyms for TINYINT(1).

There is no difference.

Sign up to request clarification or add additional context in comments.

3 Comments

@Justin Niessner: if only every SO member read the documentation - amount of questions would decrease to at least an order of magnitude
Right, it's easy to say "read the manual" AFTER you already know the answer and where it is in said manual.
@Jonathan Allen: "mysql boolean" google request 1st result is the referred page
2

There is no. BOOLEAN is an alias to TINYINT(1)

Comments

0

BOOL or BOOLEAN and just synonyms for TINYINT(1)

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.