MySQL doesn't have actual bool type. Boolean is alias of `TINYINT(1)`. Using `TINYINT(1)` for regular integer is not so common. How about treating `TINYINT(1)` as bool for better experience? ```go var b any db.QueryRow("SELECT true").Scan(&b) // b is bool(true), not int64(1). ```