mysql查询带limit_MySQL选择带有子查询和LIMIT
I am using the subselect to get the row IDs I need like this:SELECTp.id, c.id as category_idFROM(SELECT id FROM products p WHERE p.id > 6319055 ORDER BY id LIMIT 1000) prodsLEFT JOINproducts p ON p...