- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个示例表“main_table”,其中包含字段“ID”、“some_data”。
有一个聚合表“agg”,其中包含字段“id”、“main_table_id”、“joinee_id”。
然后是最终表“joinee”,其中包含字段“id”、“email”。
表“main_table”和“joinee”通过“agg”处于多对多关系。
我希望能够通过“加入者”的“电子邮件”搜索所有“main_table”条目,而无需进行左连接,然后按“main_table”.“id”分组。最终结果需要列出所有“main_table”条目,每个条目一次。想象一下这样的 - 我希望“main_table”获得一个临时字段“participants”,其中包含所有“电子邮件” - 然后我会在执行此操作的同一查询中对此字段执行 LIKE 匹配,以便找到与我输入的电子邮件有关的“main_table”条目。
这可能吗?
请注意,这只是一个更大查询的片段。 “main_table”已与其他 5 个表连接,并且它们的字段已用作过滤器。问题是,我知道在每种情况下只能有一个连接表 - 对于“joinee”,连接条目的数量会有所不同。
谢谢。
最佳答案
关系模型不支持将行结果组合到单个单元格中,并且大多数 DBMS 都在这方面表现得非常糟糕。如果您要走这条路,则需要进行大量的黑客攻击,例如使用用户定义的函数或非标准语法功能来组合值。
但是如果我理解正确的话,您的问题是您需要在主表中查找在相关电子邮件行中具有所需条目的条目,而问题是存在多对多关系。
这个怎么样:
电子邮件
,并在 agg
表上进行内联接
。这将为您提供相关的 main_table_id
。使用 distinct
或 group by
删除 double 。WHERE main_table.id IN (/* subquery */)
的内容,或者, 、内连接
对步骤 1 中的子查询的现有查询。您使用哪一个取决于具体情况;传统上,子查询比联接慢(其他条件相同),但也可能相反,具体取决于您的结构和实际数据。在一些较旧的 DMBS 上,将子查询结果缓冲在临时表中可能是有益的。关于php - MySQL 和 PHP : Searching for rows through a field in an undefined number of joined tables,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4470129/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!