mysql 使用 INNER JOIN 选择多个表?
我想选择几个表的所有字段并单独获取结果,但 mysql 将所有行一起返回:
SELECT prod_product.*
,pub_comment.*
FROM prod_product
INNER JOIN pub_comment ON (prod_product.id = pub_comment.itemId)
WHERE prod_product.id=7744
有什么方法可以单独获取每个表行吗?
我尝试 @prod:=prod_product.*
, @comment:=pub_comment.*
但 mysql 不允许我存储超过 1 行。
I want to select all fields of several table and fetch result separate but mysql return all rows together:
SELECT prod_product.*
,pub_comment.*
FROM prod_product
INNER JOIN pub_comment ON (prod_product.id = pub_comment.itemId)
WHERE prod_product.id=7744
Is there any way that i could fetch each table rows separately?
I try @prod:=prod_product.*
, @comment:=pub_comment.*
but mysql didn't allow me to store more than 1 row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行两个查询:
并且
单个查询始终返回包含两个表字段的单行。
无论如何:将列放在一行中会出现什么问题?如果您对他们的名字有疑问,您可以使用别名。
Execute two queries:
and
A single query always return single rows containing two table fields.
Anyway: what is the problem of having columns together in a single row? If you have problems with their names you can use aliases.
请注意, CONCAT_WS 将分隔您的字段和 CONCAT 将粉碎在一起。
Note that CONCAT_WS will separate your fields and CONCAT will just smash then together.