1 / 4

…Tablas

…Tablas. DDL. Relaciones entre tablas e integridad referencial. Para crear tablas relacionadas con MySql : Las tablas que se van a relacionar tienen que ser tipo InnoDb Tipo de tabla que permite definir estricciones de claves foráneas para garantizar la integridad de los datos).

lali
Download Presentation

…Tablas

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. …Tablas DDL

  2. Relaciones entre tablas e integridad referencial • Para crear tablas relacionadas con MySql: • Las tablas que se van a relacionar tienen que ser tipo InnoDb • Tipo de tabla que permite definir estricciones de claves foráneas para garantizar la integridad de los datos). • Sintaxis: • FOREIGN KEY (campo_fk) REFERENCES nombre_tabla(nombre_campo)  TYPE = INNODB; • Crear un índice en el campo que ha sido declarado claveforánea • Es necesario el uso de índices para que la verificación de las claves foráneas sea más rápida

  3. Ejemplo Crear las Tablas clientes y privilegios relacionadas MySQL: CREATE TABLE clientes ( id_clienteINTNOT NULLAUTO_INCREMENT, nombre VARCHAR(30), PRIMARY KEY (id_cliente) ) TYPE = INNODB; CREATE TABLE privilegios ( id_privilegioINTNOT NULLAUTO_INCREMENT, id_clienteINTNOT NULL, privilegio   INT(2), PRIMARY KEY(id_privilegio), INDEX (id_cliente), FOREIGN KEY (id_cliente) REFERENCES clientes(id_cliente) ) TYPE = INNODB;

  4. Inserción de registros Tablaclientes MySQL: INSERTINTOclientesVALUES (1, 'Pedro Picapiedras'); INSERTINTOclientesVALUES (2, 'Pablo Marmol'); INSERTINTOclientesVALUES (3, 'Ana Botella'); Tabla privilegios MySQL: INSERTINTOprivilegiosVALUES (1,1,10); INSERTINTOprivilegiosVALUES (2,3,05); INSERTINTOprivilegiosVALUES (3,2,01);

More Related