I have an SQL query that works beautifully as a Raw SQL query, however when I put it into WPDB it throws an error:
global $wpdb;
$sql = "SET @product_group = (SELECT product_group FROM insert_temporary LIMIT 1);
SELECT * FROM insert_temporary
WHERE product_group in (SELECT product_group FROM insert_temporary
WHERE product_group = @product_group
GROUP BY product_group
HAVING COUNT(product_group) > 1)";
$data = $wpdb->get_results($sql);
This is the error:
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT * FROM insert_temporary WHERE product_group in (SELECT product_group FRO' at line 3]
SET @product_group = (SELECT product_group FROM insert_temporary LIMIT 1); SELECT * FROM insert_temporary WHERE product_group in (SELECT product_group FROM insert_temporary WHERE product_group = @product_group GROUP BY product_group HAVING COUNT(product_group) > 1)
How can I set MySQL variables in the WPDB so that I can use the two together please?