يُخزَّن النوع bool داخليًا بصيغة UInt8. والقيم الممكنة هي true (1) وfalse (0).
SELECT true AS col, toTypeName(col);
┌CREATE TABLE test_bool
(
`A` Int64,
`B` Bool
)
ENGINE = Memory;
INSERT INTO test_bool VALUES (1, true),(2,0);
SELECT * FROM test_bool;
┌