Boolean
A BOOLEAN column is one that contains values that are either true or false. A BOOLEAN constant is, therefore, defined as follows.
boolean: {TRUE | 1} | {FALSE | 0}
select * from mytypes where is_smart = true and is_married = 0;
A BOOLEAN column is one that contains values that are either true or false. A BOOLEAN constant is, therefore, defined as follows.
boolean: {TRUE | 1} | {FALSE | 0}
select * from mytypes where is_smart = true and is_married = 0;
Copyright © 2020, Raima Inc. All rights reserved. [7/7/2021 12:04:19 PM]