This page describes how to manage foreign key relationships in your database.
A foreign key is a column that is shared between tables to establish a link between related data. When you use a foreign key, Spanner ensures that this relationship is maintained.
The following diagram shows a simple database schema where data in a table has a relationship to data in another table.
Figure 1. Diagram of an order processing database schema
There are three tables in the schema shown in Figure 1:
- The
Customers
table records the names of each customer. - The
Orders
tables keeps track of all orders made. - The
Products
table stores the product information for every product.
There are two foreign key relationships between these tables:
A foreign key relationship is defined between the
Orders
table and theCustomers
table to ensure that an order can't be created unless there is a corresponding customer.A foreign key relationship between the
Orders
table and theProducts
table ensures that an order can't be created for a product that doesn't exist.
Using the previous schema as an example, this topic discusses the Data
Definition Language (DDL) CONSTRAINT
statements that you can use to manage
relationships between tables in a database.
Add a foreign key when creating a new table
Assume that you've created a Customers
table in your simple product
ordering database. You now need an Orders
table to store information about the
orders that customers make. To ensure all orders are valid, you don't want to
let the system insert rows into the Orders
table unless there's also a
matching entry in the Customers
table. Therefore, you need a foreign key to
establish a relationship between the two tables. One choice is to add a
CustomerID
column to the new table and use it as the foreign key to create a
relationship with the CustomerID
column in the Customers
table.
When you create a new table with a foreign key, you use REFERENCE
to establish a relationship to another table. The table
that contains the REFERENCE
statement is called the referencing table. The
table named in the REFERENCE
statement is the referenced table. The column
that is named in the REFERENCE
statement is called the referencing column.
The following example shows how to use the CREATE TABLE
DDL statement to
create the Orders
table with a foreign key constraint that references
CustomerID
in the Customers
table.
GoogleSQL
CREATE TABLE Orders (
OrderID INT64 NOT NULL,
CustomerID INT64 NOT NULL,
Quantity INT64 NOT NULL,
ProductID INT64 NOT NULL,
CONSTRAINT FK_CustomerOrder FOREIGN KEY (CustomerID) REFERENCES Customers (CustomerID)
) PRIMARY KEY (OrderID);
PostgreSQL
CREATE TABLE Orders (
OrderID BIGINT NOT NULL,
CustomerID BIGINT NOT NULL,
Quantity BIGINT NOT NULL,
ProductID BIGINT NOT NULL,
CONSTRAINT FK_CustomerOrder FOREIGN KEY (CustomerID) REFERENCES Customers (CustomerID),
PRIMARY KEY (OrderID)
);
The previous statement contains a CONSTRAINT
clause that has the following
characteristics:
Use of the
CONSTRAINT
syntax to name a constraint, making it easier to drop the table using the name you've chosen.The constraint has the name
FK_CustomerOrder
. Constraint names are scoped to the schema and must be unique within the schema.The
Orders
table, on which you define the constraint, is the referencing table. TheCustomers
table is the referenced table.The referencing column in the referencing table is
CustomerID
. It references theCustomerID
field in theCustomers
table. If someone tries to insert a row intoOrders
with aCustomerID
that doesn't exist inCustomers
, the insert fails.
The following example shows an alternative table creation statement. Here, the foreign key constraint is defined without a name. When you use this syntax, Spanner generates a name for you. To discover the names of all foreign keys, refer to View properties of a foreign key relationship.
GoogleSQL
CREATE TABLE Orders (
OrderID INT64 NOT NULL,
CustomerID INT64 NOT NULL,
ProductID INT64 NOT NULL,
FOREIGN KEY (CustomerID) REFERENCES Customers (CustomerID)
) PRIMARY KEY (OrderID);
PostgreSQL
CREATE TABLE Orders (
OrderID BIGINT NOT NULL,
CustomerID BIGINT NOT NULL,
Quantity BIGINT NOT NULL,
ProductID BIGINT NOT NULL,
FOREIGN KEY (CustomerID) REFERENCES Customers (CustomerID),
PRIMARY KEY (OrderID)
);
Add a foreign key to an existing table
You also want to make sure that customers can only order products that
exist. First, you must drop the existing constraint. Then, you can use
ALTER TABLE
to add another foreign key constraint to the Orders
table, as
shown in the following:
ALTER TABLE Orders
ADD CONSTRAINT DB_ProductOrder FOREIGN KEY (ProductID) REFERENCES Products (ProductID);
The referencing column in Orders
is ProductID
, and it references the ProductID
column in Products. Again, if you are fine with Spanner naming these
constraints for you, use the following syntax:
ALTER TABLE Orders
ADD FOREIGN KEY (ProductID) REFERENCES Products (ProductID);
Add a foreign key with a delete action when creating a new table
Recall the previous example where you have a Customers
table in a product
ordering database that needs an Orders
table. You want to add a foreign key
constraint that references the Customers
table. However, you want to ensure
that when you delete a customer record in the future, Spanner
also deletes all orders for that customer. In this case, you want to use the
ON DELETE CASCADE
action with the foreign key constraint.
The following CREATE TABLE
DDL statement for the Orders
table includes the
foreign key constraint that references the Customers
table with an ON DELETE
CASCADE
action.
GoogleSQL
CREATE TABLE Orders (
OrderID INT64 NOT NULL,
CustomerID INT64 NOT NULL,
Quantity INT64 NOT NULL,
ProductID INT64 NOT NULL,
CONSTRAINT FK_CustomerOrder FOREIGN KEY (CustomerID)
REFERENCES Customers (CustomerID) ON DELETE CASCADE
) PRIMARY KEY (OrderID);
PostgreSQL
CREATE TABLE Orders (
OrderID BIGINT NOT NULL,
CustomerID BIGINT NOT NULL,
Quantity BIGINT NOT NULL,
ProductID BIGINT NOT NULL,
FOREIGN KEY (CustomerID)
REFERENCES Customers (CustomerID) ON DELETE CASCADE,
PRIMARY KEY (OrderID)
);
The previous statement contains a foreign key constraint with an
ON DELETE CASCADE
clause. The CustomerID
column is a foreign key that
references the CustomerID
field in the Customers
table. This means that each
CustomerID
value in the Orders
table must also exist in the Customers
table. If someone tries to delete a row from the Customers
table, all of the
rows in the Orders
table that reference the deleted CustomerID
value are
also deleted in the same transaction.
Add a foreign key with a delete action to an existing table
You also want to make sure that orders are only created for products that
exist. You can use ALTER TABLE
to add another foreign key constraint with
ON DELETE CASCADE
action to the orders table as follows:
ALTER TABLE Orders
ADD CONSTRAINT DB_ProductOrder FOREIGN KEY (ProductID)
REFERENCES Products (ProductID) ON DELETE CASCADE;
Deleting a row from the Products
table deletes all of the rows in the
Orders
table that reference the deleted ProductID
value.
Query data across foreign key relationships
SELECT * FROM Orders
INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID
INNER JOIN Products ON Orders.ProductsID = Products.ProductID;
Examples of how Spanner maintains referential integrity
The main reason for adding foreign key relationships is so that Spanner can maintain the referential integrity of your data. If you modify data in a way that breaks a foreign key constraint, the update fails with an error.
Consider the data in Figure 2. Some customers have ordered products, as
shown in the orders table. Because of the foreign keys that are in place, you
can guarantee that the data that was inserted into the Orders
table has
referential integrity.
Figure 2. Sample data for in our ordering database.
The following examples show what happens when you try to modify the data in a way that would break referential integrity.
Add a row into the
Orders
table with aCustomerID
value that does not exist inCustomers
What happens if you try the following modification, given the sample data from the preceding diagram?
INSERT INTO Orders (OrderID, ProductID, Quantity, CustomerID) VALUES (19, 337876, 4, 447);
In this case, the system would try to insert a row into
Orders
with aCustomerID
(447) that doesn't exist in theCustomers
table. If the system did this, you would have an invalid order in your system. However, with the foreign key constraint you added to yourOrders
table, your table is protected. TheINSERT
fails with the following message, assuming the constraint is calledFK_CustomerOrder
.Foreign key constraint `FK_CustomerOrder` is violated on table `Orders`. Cannot find referenced values in Customers(CustomerID).
Attempt to delete a row from the
Customers
table when the customer is referenced in a foreign key constraint.Imagine a situation where a customer unsubscribes from your online store. You want to remove the customer from your backend, so you attempt the following operation.
DELETE FROM Customers WHERE CustomerID = 721;
In this example, Spanner detects through the foreign key constraint that there are still records in the
Orders
table that reference the customer row you are trying to delete. The following error is displayed in this case.Foreign key constraint violation when deleting or updating referenced row(s): referencing row(s) found in table `Orders`.
To fix this issue, you delete all referencing entries in
Orders
first. You can also define the foreign key with theON DELETE CASCADE
action to let Spanner handle deletion of referencing entries.
View properties of a foreign key relationship
Spanner's INFORMATION_SCHEMA contains information about foreign keys and their backing indexes. The following are some examples of the questions you can answer by querying the INFORMATION SCHEMA.
For more information on backing indexes, see Foreign keys backing indexes.
What constraints are defined in my database?
SELECT tc.CONSTRAINT_NAME, tc.TABLE_NAME, tc.CONSTRAINT_TYPE
FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS as tc
WHERE tc.CONSTRAINT_TYPE = 'FOREIGN KEY';
What foreign keys are defined in my database?
SELECT rc.CONSTRAINT_NAME, rc.UNIQUE_CONSTRAINT_NAME, rc.SPANNER_STATE
FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS as rc;
Which indexes are secondary indexes for foreign keys, also known as backing indexes?
Foreign key backing indexes are managed by Spanner , so querying for
SPANNER_IS_MANAGED
on the INDEXES
view returns all backing indexes.
SELECT i.TABLE_NAME, i.INDEX_NAME, i.INDEX_TYPE, i.INDEX_STATE,
i.IS_UNIQUE, i.IS_NULL_FILTERED, i.SPANNER_IS_MANAGED
FROM INFORMATION_SCHEMA.INDEXES as i
WHERE SPANNER_IS_MANAGED = 'YES';
What is the referential action defined with the foreign key constraint?
SELECT rc.CONSTRAINT_NAME, rc.UNIQUE_CONSTRAINT_NAME, rc.DELETE_RULE,
rc.UPDATE_RULE
FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS as rc;
For more information, see Information Schema.
Remove a foreign key relationship
The following DDL drops a foreign key constraint from the Orders
table.
ALTER TABLE Orders
DROP CONSTRAINT FK_CustomerOrder;
The foreign key backing indexes are dropped automatically when the constraint itself is dropped.
Support for more complex foreign key relationships
Multiple columns
Foreign keys can reference multiple columns. The list of columns form a key that corresponds to a table's primary key or to a backing index. The referencing table contains foreign keys of the referenced table key.
In the following example, the foreign key definitions tell Spanner
that each SongName
value in the TopHits table must have a matching value in
the Songs table; and each SingerFirstName
and SingerLastName
pair of values
must have a matching FirstName
and LastName
pair of values in the Singers
table.
GoogleSQL
CREATE TABLE TopHits (
Rank INT64 NOT NULL,
SongName STRING(MAX),
SingerFirstName STRING(MAX),
SingerLastName STRING(MAX),
-- Song names must either be NULL or have matching values in Songs.
FOREIGN KEY (SongName) REFERENCES Songs (SongName),
-- Singer names must either be NULL or have matching values in Singers.
FOREIGN KEY (SingerFirstName, SingerLastName)
REFERENCES Singers (FirstName, LastName)
) PRIMARY KEY (Rank);
PostgreSQL
CREATE TABLE TopHits (
Rank BIGINT NOT NULL,
SongName VARCHAR,
SingerFirstName VARCHAR,
SingerLastName VARCHAR,
-- Song names must either be NULL or have matching values in Songs.
FOREIGN KEY (SongName) REFERENCES Songs (SongName),
-- Singer names must either be NULL or have matching values in Singers.
FOREIGN KEY (SingerFirstName, SingerLastName)
REFERENCES Singers (FirstName, LastName),
PRIMARY KEY (Rank)
);
Circular references
Occasionally tables have circular dependencies, perhaps for legacy reasons or
due to denormalization. Spanner foreign keys permit circular references.
Since a referenced table must exist before a foreign key can reference it, one of
the foreign keys must be added with an ALTER TABLE
statement. Here's an example
- Create TableA, without a foreign key
- Create TableB with a foreign key constraint on TableA.
- Use
ALTER TABLE
on TableA to create a foreign key reference to TableB.
Self-referencing tables
One special type of circular reference is a table that defines a foreign key that references the same table. For example, the following snippet shows a foreign key to enforce that an employee's ManagerId is also an employee.
GoogleSQL
CREATE TABLE Employees (
EmployeeId INT64 NOT NULL,
EmployeeName STRING(MAX) NOT NULL,
ManagerId INT64,
FOREIGN KEY (ManagerId) REFERENCES Employees (EmployeeId)
) PRIMARY KEY (EmployeeId);
PostgreSQL
CREATE TABLE Employees (
EmployeeId BIGINT NOT NULL,
EmployeeName VARCHAR NOT NULL,
ManagerId BIGINT,
FOREIGN KEY (ManagerId) REFERENCES Employees (EmployeeId),
PRIMARY KEY (EmployeeId)
);
What's next
Learn more about foreign keys support in Spanner.
Learn more about Spanner's INFORMATION SCHEMA.