Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 15, 2019 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/008bfb7cbfac498f72a1ce5d78096e86 to your computer and use it in GitHub Desktop.
Save parzibyte/008bfb7cbfac498f72a1ce5d78096e86 to your computer and use it in GitHub Desktop.
create table motores_de_bases_de_datos(
nombre varchar(20) not null,
instalacion_sencilla bit not null
);
insert into motores_de_bases_de_datos
(nombre, instalacion_sencilla)
values
('SQL Server', 0),
('MariaDB', 1),
('PostgreSQL', 1);
select nombre from motores_de_bases_de_datos where instalacion_sencilla = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment