尝试向此 sql 添加限制,它在限制之前工作正常,但是一旦我添加限制,我就会收到一条错误消息
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的“LIMIT 0,10”附近使用正确的语法
我的 sql 是
SELECT a.id,a.product_name,a.product_price,a.user_id as product_user_id,b.id as user_id,b.first_name, FROM products as a, customers as b where a.user_id=b.id and a.product_featured='Y' and a.product_status='Active' order by a.id desc limit 0,6