Bienvenido a nuestra comunidad, aquí vas a encontrar la respuesta a lo que necesitas.
Ejemplo 1: mysql booleano
-- MySQL doesn't have a boolean. Instead, use TINYINT. BOOL and BOOLEAN-- are aliases to TINYINT. 0 is true, while 1 is false for TINYINT.-- You can also use TRUE, FALSE, true, false, True, or false as-- aliases for 0 and 1 respectively.CREATETABLEIFNOTEXISTS boolTest (
thisFieldIsTrue TINYINTDEFAULT0-- True by default
thisFieldIsFalse TINYINTDEFAULT1-- False by default
thisIsAlsoTru BOOLDEFAULTTrue-- True by default, see above for alternates to True and Bool)
Ejemplo 2: mysql booleano
SELECTtrue,false,TRUE,FALSE,True,False;-- 1 0 1 0 1 0
Recuerda algo, que tienes la capacidad de aclarar tu experiencia .
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)