我有三个要显示的信息表。问题是其中一个ps_mycase_output_design不能与其他任何对象连接。
我想要的只是能够显示所有信息。我不需要按ID的..或WHERE子句等进行查询。这是从我开始的地方开始的,但是我有

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY mycase.key_product_output DESC LIMIT 10' at line 13


这是简单的查询

SELECT customer.*, mycase.*, orders.*

FROM
    ps_customer customer
LEFT JOIN
    ps_orders orders
LEFT JOIN
 ps_mycase_output_design mycase
ORDER BY mycase.key_product_output DESC LIMIT 10

最佳答案

如果您不想使用ON或WHERE子句,请尝试以下操作:

SELECT customer.*, mycase.*, orders.*
FROM
    ps_customer customer,ps_orders orders,ps_mycase_output_design mycase
ORDER BY mycase.key_product_output DESC LIMIT 10


不确定这在逻辑上是您所需要的。

09-12 12:46