Tabel bestelling aanmaken
Sign in to test your solution.
CREATE TABLE bestelling (
bestelcode INTEGER PRIMARY KEY AUTOINCREMENT,
klantnummer INTEGER,
bezorgernummer INTEGER,
bestel_datum TEXT,
bezorg_tijd TEXT
);
-- Verwijder deze regel niet, die controleert of je foreign key correct is.
SELECT "table", "from", "to" FROM pragma_foreign_key_list('bestelling');
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.