CREATE TEMPORARY TABLE temp_min_prices
SELECT goods_id, MIN(guest_price) as min_price
FROM em_product_sku
GROUP BY goods_id
error: 1005 , Can't create table `u618381349_yemu`.`temp_min_prices` (errno: 165 "Table is read only")