- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我遇到的情况最好通过以下场景来解释:
Child
记录有两个 Parent
(母亲和父亲)如果您稍后阅读这篇文章时考虑应用自引用表
场景的选项,则没有必要,因为没有祖父或孙子。
关于 parent 它是如何定义的:
CREATE TABLE IF NOT EXISTS parent(
code varchar(3),
name varchar(10),
PRIMARY KEY(code)
)ENGINE=INNODB;
记录是如何插入的:
INSERT INTO parent(code,name) VALUES('001','Mary');
INSERT INTO parent(code,name) VALUES('002','Joseph');
INSERT INTO parent(code,name) VALUES('003','Adan');
INSERT INTO parent(code,name) VALUES('004','Eva');
INSERT INTO parent(code,name) VALUES('005','Ana');
INSERT INTO parent(code,name) VALUES('006','Elcana');
select
查询按预期工作:
mysql> select * from parent;
+------+--------+
| code | name |
+------+--------+
| 001 | Mary |
| 002 | Joseph |
| 003 | Adan |
| 004 | Eva |
| 005 | Ana |
| 006 | Elcana |
+------+--------+
6 rows in set (0.01 sec)
关于 child ,它是如何定义的:
CREATE TABLE IF NOT EXISTS child(
code varchar(3),
name varchar(10),
PRIMARY KEY(code),
mother_code varchar(3),
father_code varchar(3),
FOREIGN KEY fk_mother_code(mother_code) REFERENCES parent(code),
FOREIGN KEY fk_father_code(father_code) REFERENCES parent(code)
)ENGINE=INNODB;
观察:从上面观察子
期望两个PK
来自父
code>(假设必须不同)通过两个 FK
s。
记录是如何插入的:
INSERT INTO child(code, name, mother_code, father_code) VALUES('001','Jesus', '001', '002');
INSERT INTO child(code, name, mother_code, father_code) VALUES('002','Cain', '003', '004');
INSERT INTO child(code, name, mother_code, father_code) VALUES('003','Abel', '003', '004');
INSERT INTO child(code, name, mother_code, father_code) VALUES('004','Set', '003', '004');
INSERT INTO child(code, name, mother_code, father_code) VALUES('005','Samuel', '005', '006');
select
查询按预期工作:
mysql> select * from child;
+------+--------+-------------+-------------+
| code | name | mother_code | father_code |
+------+--------+-------------+-------------+
| 001 | Jesus | 001 | 002 |
| 002 | Cain | 003 | 004 |
| 003 | Abel | 003 | 004 |
| 004 | Set | 003 | 004 |
| 005 | Samuel | 005 | 006 |
+------+--------+-------------+-------------+
5 rows in set (0.00 sec)
目标是获得以下内容:
+------+--------+------+-------+-------------+-------------+
| code | name | code | name | mother_code | father_code |
+------+--------+------+-------+-------------+-------------+
| 001 | Mary | 001 | Jesus | 001 | 002 |
| 002 | Joseph | 001 | Jesus | 001 | 002 |
+------+--------+------+-------+-------------+-------------+
我尝试了以下方法:
SELECT p.*, c.* FROM parent p,
child c,
(SELECT pm.code AS m_code FROM parent pm) AS m,
(SELECT pf.code AS f_code FROM parent pf) AS f
WHERE
m.m_code='001' AND
f.f_code='002' AND
c.mother_code=m.m_code AND
c.father_code=f.f_code AND
c.mother_code='001' AND
c.father_code='002' AND
c.code='001';
where
子句看起来多余,这是因为我试图获得所需的结果,因此它包含编写正确查询的尝试。
但总是返回:
+------+--------+------+-------+-------------+-------------+
| code | name | code | name | mother_code | father_code |
+------+--------+------+-------+-------------+-------------+
| 001 | Mary | 001 | Jesus | 001 | 002 |
| 002 | Joseph | 001 | Jesus | 001 | 002 |
| 003 | Adan | 001 | Jesus | 001 | 002 |
| 004 | Eva | 001 | Jesus | 001 | 002 |
| 005 | Ana | 001 | Jesus | 001 | 002 |
| 006 | Elcana | 001 | Jesus | 001 | 002 |
+------+--------+------+-------+-------------+-------------+
6 rows in set (0.00 sec)
那么正确的句子是什么?
最佳答案
你只是在寻找两个 join
吗?
select c.*, pm.name as mother_name, pf.name as father_name
from child c join
parent pm
on c.mother_code = pm.code join
parent pf
on c.father_code = pf.code;
您可以添加一个 where
子句来将其过滤到特定的子项:
where c.code in ('001', '002')
关于mysql - SQL 选择语句 : One Child - Two Parents (two different FK),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55600195/
假设我有两张 table ,a和 b : a { pk as int fk as int ... } b { pk as int ... } 我想在查询中加入 a 和 b,如下所示: FRO
我在 MYSQL 数据库的各个表中分配的列数比实际需要的长度要长。所以现在我尝试使它们具有适当的长度。它们是 VARCHAR(64),我想让它们变成 CHAR(36)。这些列涉及外键。这些更改将成为一
这是我的 table : 成员:ID,... 产品:ID,... 我的 Member 表有一些值,如果 Id = 0,则没有,并且我不想添加任何 Id = 0 的成员,所以我尝试运行此脚本: ALTE
这个问题已经有答案了: MySQL Relationships (1 个回答) 已关闭 4 年前。 这个问题可能在其他帖子中得到了回答,但我一直在搜索,但没有找到类似的东西(很有趣): 我使用 Lar
两个表,使用这些脚本创建: create table user_auth ( username varchar(255) NOT NULL, password varchar(255)
如果我添加带有 ON DELETE CASCADE 之类的 FK,我以后会遭受后果吗? 如果不是,我应该为 CakePHP 的 MySQL 中的 FK 使用什么命名约定? 最佳答案 您可以看到布局的命
我有一个类似的问题: How to create foreign key that is also a primary key in MySQL? 但是我的架构似乎与答案匹配,但仍然返回错误“ERRO
我有 2 个实体:PurchaseRequest (PR) 和 PurchasingRequestLineItem (PRLI)。他们遵循典型的关系模式,即 PR 有许多 PRLI。我在 PRLI 上
在尝试通过删除连接(非规范化)来优化物理数据模型时,我选择采用用户可能为 CommEventPurposeType 指定的所有可能值,将它们实现为 中的 BOOLEAN 属性>CommEventPur
我猜这些问题似乎很令人困惑。 库存实体 @Entity @IdClass(InventoryPK.class) public class Inventory { @Id @ManyTo
UNIQUE(col1, col2) 与 FK(col1), FK(col2) 我目前启用了两个索引,并且我不太关心外部关系本身。所以我想知道通过拥有所有这些键,我是否会获得冗余索引以提高读取性能,或
我需要将名为“practice”的列插入到表“cred_insurances”中,该表是一个 FK 引用表“practices” PK “id” 最佳答案 您需要通过在 mysql 提示符下运行以下命
使用 JPA 注释和 hibernate ,我们最近遇到了一个单向单多映射问题,如下所示: @Entity public class FooOrder extends AbstractEntity{
我经常听说在编写测试时不要使用随机数据,这对于大多数数据来说似乎是合理的。 但是,我认为我有可能需要这样做的情况。我正在处理的代码有一些非 AR 模型。例如,用户模型不受数据库表支持,因为我们通过 A
我的情况(简化)如下所示: 表 UNITS 在 UNITS.NAME 上有一个 PK。 (单位名称, varchar(12)) 表 DEPTS 在 DEPTS.NAME 上有一个 PK。 (部门名称,
我已经使用现有数据库的代码优先方法创建了一个 MVC 应用程序。 我注意到我的一个表不需要外键,所以我尝试删除它但我不断收到: The object 'FK_BorrowedProperty_code
为什么我的初始 update-database 失败了,我需要在我的数据库表类中更改什么才能使其正常工作? 当然,我可以将迁移脚本中的onDelete: ReferentialAction.Casca
我的主要目标是获取所有数据的最后更新时间。 详细信息:我有一张 table - 群组 groupId groupName timeUpdated (timestamp - on update) 还有另
作为练习,我正在构建我的第一个 SQL 数据库。我试图为数据库中的所有表创建语句。我想知道是否可以删除任何外键? 我的第二个问题是如何对使用 4 个或更多表的联接的数据库进行查询。 任何答案都将受到赞
我正在尝试在我的 H2 数据库中运行此 mysql 命令。 DB设置为mysql模式。 -- -----------------------------------------------------
我是一名优秀的程序员,十分优秀!