The Man
The Man

Reputation: 435

Difference between BOOL and BOOLEAN types in MySQL?

What is the difference between BOOL and BOOLEAN data types in MySQL?
Can BIT or TINYINT represent Booleans?

Upvotes: 2

Views: 1026

Answers (1)

juergen d
juergen d

Reputation: 204756

BOOL and BOOLEAN are both synonyms of TINYINT(1). So there is no difference.

MySQL Reference Manual

Upvotes: 5

Related Questions