“clé étrangère” Réponses codées

Clé étrangère de Laravel

Schema::table('posts', function (Blueprint $table) {
    $table->unsignedBigInteger('user_id');

    $table->foreign('user_id')->references('id')->on('users');
});
OR
Schema::table('posts', function (Blueprint $table) {
    $table->foreignId('user_id')->constrained();
});
Courageous Cod

Déposer la clé étrangère

ALTER TABLE table_name
DROP CONSTRAINT fk_name;
SmokeFrog

clé étrangère

An index on a table is a data structure that makes random access to the rows 
fast and efficient. It helps to optimize the internal organization of a table 
as well.

A foreign key is simply a pointer to a corresponding column in another table 
that forms a referential constraint between the two tables.
calyCoder

clé étrangère

USE Organization
CREATE TABLE Employee_Office
(
Id INT PRIMARY KEY IDENTITY(1,1),
Emp_Id int FOREIGN KEY REFERENCES Employee(Id),
Office_Id int FOREIGN KEY REFERENCES Office(Id)
)
Adorable Armadillo

clé étrangère

USE Organization
CREATE TABLE Employee
(
Id INT PRIMARY KEY IDENTITY(1,1),
Name VARCHAR (50) NOT NULL,
Age INT,
Gender VARCHAR (50),
Dep_Id int FOREIGN KEY REFERENCES Department(Id),
Insur_Id int FOREIGN KEY REFERENCES Insurance(Id)
)
Adorable Armadillo

clé étrangère

ALTER TABLE your_table ADD FOREIGN KEY (your_column) REFERENCES other_table(other_column);
Healthy Hare

Réponses similaires à “clé étrangère”

Questions similaires à “clé étrangère”

Plus de réponses similaires à “clé étrangère” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code