作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
列出订购 Apple 笔记本电脑的客户姓名(选择您自己的加入类型)。我有美食表客户、订单行、订单表和产品。我不断收到此错误
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 ''product' where product_name = 'Apple Laptop'))) LIMIT 0, 25' at line 4
select customer.cust_name
from customer
where customer.cust_id in (
select cust_id
from ordertable
where order_id in (
select order_id
from orderline
where product in (
select product_id
from 'product'
where product_name = 'Apple Laptop'
)
)
)
最佳答案
删除最后一个 select 语句中“product”的引号。它是表的名称,因此不需要引号。
关于mysql - 错误 1064 - 使用 IN 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43100330/
我是一名优秀的程序员,十分优秀!