How can I implement a foreign key in SQLite? I thought something like this:
CREATE TABLE job (_id INTEGER PRIMARY KEY AUTOINCREMENT, employer_id INTEGER, ...); CREATE TABLE employer(_id INTEGER, employer_name TEXT NOT NULL, ...);
Where employer_id is the _id from the employer table. Will this work? Is there another quick, perhaps less error prone? Maybe with triggers?
source share