我是SQL的新手,我的项目被发回来说查询有错误,我运行时没有看到错误。谁能告诉我我错过了什么?
SELECT DISTINCT Invoice.Invoiceid, Invoice.Customerid, Invoice.InvoiceDate, Invoice.BillingCountry, Invoice.Total AS “Total Spent”
FROM Invoice
JOIN Customer
ON Invoice.Customerid=Customer.Customerid
JOIN InvoiceLine
ON InvoiceLine.InvoiceLineid=Invoice.Invocieid
WHERE total BETWEEN 10.00 AND 50.00
ORDER BY InvoiceDate
LIMIT 100