SQL错误(参数太少)

时间:2017-11-25 15:58:18

标签: mysql sql

select productline, P.productcode, productname, (OD.priceeach - P.buyprice) as ProfitMargin
from Products P, OrderDetails OD
where P.productcode = OD.productcode and productline like '%Cars%'
order by ProfitMargin desc

当我运行它时,出现错误。它说“参数太少。预计1。” 我的代码有什么问题吗?

0 个答案:

没有答案