Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 18, 2019 20:30
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/9771b3d6bf3da6addcb4b4f395489cb1 to your computer and use it in GitHub Desktop.
Save parzibyte/9771b3d6bf3da6addcb4b4f395489cb1 to your computer and use it in GitHub Desktop.
create database pruebas;
use pruebas;
create table contactos(nombre varchar(255), sitio_web varchar(255));
insert into contactos values ('Luis Cabrera Benito', 'parzibyte.me');
select * from contactos;
drop database pruebas;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment