Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 18, 2019 20:53
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/ccb49bfa99a90da673f1fd21916cc14c to your computer and use it in GitHub Desktop.
Save parzibyte/ccb49bfa99a90da673f1fd21916cc14c 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'),
('Luis Cabrera Benito', 'parzibyte.me'),
('Luis Cabrera Benito', 'parzibyte.me'),
('Luis Cabrera Benito', 'parzibyte.me');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment