Skip to content

Instantly share code, notes, and snippets.

@yickson
Last active April 16, 2020 21:24
Show Gist options
  • Save yickson/02d604d14241e4d5327cbd643082f128 to your computer and use it in GitHub Desktop.
Save yickson/02d604d14241e4d5327cbd643082f128 to your computer and use it in GitHub Desktop.
Instrucciones básicas para MySQL

Querys Básicas de MySQL

Consultar tabla

select * from mi-tabla;

Inserta un nuevo registro

insert into mi-tabla (tipo, codigo) value ('shipping', 'express');

Editar o actualizar un registro

update mi-tabla set name = 'Yickson' where id = 1;

Eliminar registro de una tabla

delete from mi-tabla where id = 1;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment