“Cómo agregar restricción de clave extranjera en SQL” Código de respuesta

Cómo agregar restricción de clave extranjera en SQL

ALTER TABLE 'table_name'
ADD CONSTRAINT 'constraint_name' FOREIGN KEY 'foreign_key' REFERENCES 'column_name'('primary_key');
Lux

Clave exterior de SQL

create table Jobs(
job_id number not null,
job_title varchar(30),
min_salary number,
max_salary number
);
create table job_history(
employee_id number not null,
start_date date,
end_date date,
job_id number not null,
department_id number
);
alter table jobs add constraint pk_jobs primary key(job_id);
alter table job_history add constraint fk_job foreign key(job_id) references jobs(job_id);
Fierce Ferret

Respuestas similares a “Cómo agregar restricción de clave extranjera en SQL”

Preguntas similares a “Cómo agregar restricción de clave extranjera en SQL”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código