SELECT SQL_CALC_FOUND_ROWS
pm.id AS id,
pm.category_code AS categoryCode,
pm.category_name AS categoryName,
pm.material_name AS materialName,
pm.material_a AS materialA,
pc.classification_one AS classificationOne,
pc.classification_two AS classificationTwo,
pc.classification_three AS classificationThree
FROM
product_material_system_category pc
LEFT JOIN product_material_system_main pm ON pm.category_code = pc.category_code
WHERE
pc.classification_one LIKE '%内墙%'
OR pc.classification_two LIKE '%内墙%'
OR pc.classification_three LIKE '%内墙%'
ORDER BY
pm.category_code
LIMIT 0,
10;
SELECT
FOUND_ROWS() AS total;
帮忙看看这是怎么回事呢
你这是两条语句了