Drop links or images here to add them to the editor.

Database schema

Voeg de ontbrekende foreign key toe aan de onderstaande CREATE TABLE-code voor tabel bestelling. De kolom klantnummer verwijst naar de primaire sleutel van tabel klant.

CREATE TABLE bestelling (
    bestelcode INTEGER PRIMARY KEY AUTOINCREMENT,
    klantnummer INTEGER,
    bezorgernummer INTEGER,
    bestel_datum TEXT,
    bezorg_tijd TEXT
);