1 / 12

SQL

Structured Query Language (Lenguaje Estructurado de Consultas). SQL. ¿Para qué?. Permite la creación de estructuras para el almacenamiento de datos. Provee instrucciones parecidas al inglés natural para el acceso y manipulación de los datos almacenados.

zed
Download Presentation

SQL

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. StructuredQueryLanguage (Lenguaje Estructurado de Consultas) SQL

  2. ¿Para qué? • Permite la creación de estructuras para el almacenamiento de datos. • Provee instrucciones parecidas al inglés natural para el acceso y manipulación de los datos almacenados. • Las instrucciones utilizadas para ello son • insert • update • delete • select

  3. Instrucciones de definición • Instrucciones de definición de estructuras (tablas) • createtable • alter table • createindex • droptable • dropindex

  4. De modelo a la realidad id login email Usuarios clave fecha_creacion

  5. Con SQL createtable usuarios ( id integernotnull, loginvarchar(60) notnull, email varchar(200) notnull, clave varchar(30) notnull, primarykey(id) );

  6. Quitar una tabla droptable usuarios;

  7. Agregar una nueva columna alter table usuarios addcolumnfecha_creaciondatetime;

  8. Quitar una columna alter table usuarios dropcolumnfecha_creacion; //no todos los motores la implementan (SQLite es uno de ellos)

  9. Agregar filas • Instrucción INSERT insertinto usuarios (login, email, clave) values (‘nelson’, ‘nrojas@123.cl’, ‘123’); insertinto usuarios (login, email, clave) values(‘jhon’, ‘jdk@321.cl’, ‘321’); insertinto usuarios (login, email, clave) values(‘gilda’, ‘gily@321.cl’, ‘abc’);

  10. Obtener filas select * from usuarios; //obtener un usuario puntual select * from usuarios wherelogin = ‘jhon’;

  11. Actualizar datos de una fila update usuarios set clave=‘333’ wherelogin = ‘gilda’;

  12. Eliminar filas deletefrom usuarios wherelogin = ‘jhon’;

More Related