我不明白爲什麼我收到錯誤,請你解釋一下嗎?爲什麼我會收到「外鍵不匹配」錯誤?
sqlite> create table a (id text, val text);
sqlite> create table b (bid text, ref text, foreign key(ref) references a(text));
sqlite> insert into a values("1", "one");
sqlite> insert into b values("1", "one");
Error: foreign key mismatch