foreign_key.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test syntax of foreign keys
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. create table t1 (
  8. a int not null references t2,
  9. b int not null references t2 (c),
  10. primary key (a,b),
  11. foreign key (a) references t3 match full,
  12. foreign key (a) references t3 match partial,
  13. foreign key (a,b) references t3 (c,d) on delete no action
  14.   on update no action,
  15. foreign key (a,b) references t3 (c,d) on update cascade,
  16. foreign key (a,b) references t3 (c,d) on delete set default,
  17. foreign key (a,b) references t3 (c,d) on update set null);
  18. create index a on t1 (a);
  19. create unique index b on t1 (a,b);
  20. drop table t1;
  21. # End of 4.1 tests