gpt4 book ai didi

php - 从列表中列出一类

转载 作者:行者123 更新时间:2023-11-29 13:23:36 25 4
gpt4 key购买 nike

我想从表格中列出一个类别,我该怎么做?

Table name: products
product_id desc name price qty

Table name: category
cat_id cat_name

我希望它看起来像这样

Category 1 (shirts)
Name Desc Price Qty

我有这个,但我收到一个错误..不确定它是否是正确的方法

SELECT products.*, category.cat_name
FROM prodcuts
LEFT JOIN category ON products.cat_id = prodcuts.cat_id
WHERE category.cat_name = "shirts"

最佳答案

您的 ON 语句中有错误(每个表必须有一列才能连接它们)并且产品拼写错误(prodcuts):

试试这个:

SELECT products.*, category.cat_name
FROM products
LEFT JOIN category ON products.cat_id = category.cat_id
WHERE category.cat_name = "shirts"

编辑:

另一件事是您说您的产品表是:

Table name: products
product_id desc name price qty

这里没有提到cat_id。您确实必须将其放入产品表中(如果这不是编写问题时的错误)

关于php - 从列表中列出一类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20442730/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com