摘要: Summary 关于约束的一些记录。 非主键字段被设置成外键的时候提示:[Code: , SQL State: 42830] ERROR: there is no unique constraint matching given keys for referenced table "t1" Demo 阅读全文
posted @ 2020-05-08 17:26 duchaoqun 阅读(316) 评论(0) 推荐(0) 编辑
摘要: Summary 简单的级联关系 一个 Author 会有很多 Book。 Author 对 Book 是一对多的关系。 Book 对 Author 是多对一的关系。 Book belongs to Author。 在 Book 上设置 Foreign Key 对应 author_id,可以单独删除 book,但是存在书不能删除 author。 Demo class Author { ... 阅读全文
posted @ 2020-05-08 16:52 duchaoqun 阅读(150) 评论(0) 推荐(0) 编辑