これらのクエリを実行すると:
create table University ( branch text primary key, region text, enrollment int);
create table Student ( sID int primary key, sName text, average int);
create table Apply ( sID int references Student(sID), branch text references University(branch), major text, decision text);
insert into Apply values ( 123, 'stanford', 'CS', 'Y');
参照テーブルに対応する値を持たないタプルを挿入しているため、エラーが返されるはずです。しかし、これらのコマンドを実行すると、このタプルは成功します。このクエリの何が問題になっていますか? 私の DBMS は sqlite で、sqliteman を使用しています。