使用多表 SQL 语句选择数据返回意外结果

发布于 2024-11-24 09:45:21 字数 856 浏览 0 评论 0原文

我想格式化 SQL 结果,然后导出到 CSV(phpMyAdmin 导出)。

SQL语句:

SELECT
product.name,
features.text
FROM products as product, product_features as features
WHERE
features.product_id=products.id LIMIT 0,100

表结构:

products

------------
id | name
------------
24   Baseball
25   Rope

product_features

--------------------------
id | text      | product_id
--------------------------
45   Leather..   24
46   Hardball    24
47   Nylon       25
48   Black       25

问题:我得到:

Baseball Leather
Baseball Hardball
Rope Nylon
Rope Black

我很难理解什么使用 SQL 语句执行的解决方案类型。

我正在寻找的结果:

Baseball, Leather..., Hardball
Basketball, Nylon, Black

I want to format SQL results, then export to CSV (phpMyAdmin export).

SQL statement:

SELECT
product.name,
features.text
FROM products as product, product_features as features
WHERE
features.product_id=products.id LIMIT 0,100

Tables strucutre:

Table products:

------------
id | name
------------
24   Baseball
25   Rope

Table product_features:

--------------------------
id | text      | product_id
--------------------------
45   Leather..   24
46   Hardball    24
47   Nylon       25
48   Black       25

Problem: I get:

Baseball Leather
Baseball Hardball
Rope Nylon
Rope Black

I'm having a hard time wrapping my head around what type of solution do with a SQL statement.

Result I'm Looking for:

Baseball, Leather..., Hardball
Basketball, Nylon, Black

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗酒趁年少 2024-12-01 09:45:21

您将需要某种类型的聚合:

SELECT product.name, GROUP_CONCAT(features.text)
FROM products JOIN product_features ON(products.id = product_features.product_id)
GROUP BY products.id;

You'll need some type of aggregate:

SELECT product.name, GROUP_CONCAT(features.text)
FROM products JOIN product_features ON(products.id = product_features.product_id)
GROUP BY products.id;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文