how do you insert boolean to postgresql

Solutions on MaxInterview for how do you insert boolean to postgresql by the best coders in the world

showing results for - "how do you insert boolean to postgresql"
Mathilda
28 May 2020
1PostgreSQL supports a single Boolean data type: BOOLEAN that can have three values: true , false and NULL . PostgreSQL uses one byte for storing a boolean value in the database. The BOOLEAN can be abbreviated as BOOL .