“mariadb agregar clave extranjera” Código de respuesta

mariadb agregar clave extranjera

alter table group_a 
add constraint fk_b_in_a
foreign key(`b_id`) 
    references group_b(`b_id`)
    on delete set null
    on update set null;
Plain Puffin

Crear tabla en MySQL Mariadb Key principal Key Exterior Key

CREATE TABLE IF NOT EXISTS `scores` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  UserId int(11) NOT NULL,
  `NICKNAME` varchar(50) NOT NULL,
  `HIGHSCORE` int(11) NOT NULL,
  PRIMARY KEY (`ID`),
  FOREIGN KEY (UserId) REFERENCES USER(Id)
);
Sparkling Spider

Tabla alter agregue el ejemplo de la clave de mariadb

alter table caixa add foreign key (idcaixafluxo) references caixafluxo (idcaixafluxo);
Disgusted Deer

Respuestas similares a “mariadb agregar clave extranjera”

Preguntas similares a “mariadb agregar clave extranjera”

Más respuestas relacionadas con “mariadb agregar clave extranjera” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código