Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 16, 2019 16:40
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/ed3381c752e2415e43033a355ffd55ed to your computer and use it in GitHub Desktop.
Save parzibyte/ed3381c752e2415e43033a355ffd55ed to your computer and use it in GitHub Desktop.
/*
Forma corta
*/
INSERT INTO clientes VALUES ('Roberto Pérez', '55388214');
/*
Forma larga, pero conveniente
*/
INSERT INTO clientes (nombre, telefono) VALUES ('Roberto Pérez', '55388214');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment