Which of the following SQL statements is used to add a foreign key constraint to a table in SQLite?
a) ADD FOREIGN KEY
b) ADD CONSTRAINT FOREIGN KEY
c) FOREIGN KEY CONSTRAINT
d) None of the above
Answer: b) ADD CONSTRAINT FOREIGN KEY
Explanation: The ADD CONSTRAINT FOREIGN KEY statement is used to add a foreign key constraint to a table in SQLite.