A Database Error Occurred

Error Number: 1054

Unknown column 'price-inr' in 'field list'

SELECT `product`.`id`, `product`.`title`, `product`.`product-number`, `product`.`cover-image`, `MP`.`price-inr`, `MP`.`price-doller`, `MP`.`price-pound`, `MP`.`price-euro`, `MP`.`price-aud` FROM `product` JOIN (SELECT MIN(`price-inr`) as `price-inr`,MIN(`price-doller`) as `price-doller`,MIN(`price-pound`) as `price-pound`,MIN(`price-euro`) as `price-euro`,MIN(`price-aud`) as `price-aud`,`id` as `minid`,`product` from `product-price` where `product-price`.`status`="1" GROUP BY product) as MP ON `MP`.`product`=`product`.`id` WHERE `product`.`id` IS NULL ORDER BY `product`.`product-number` ASC

Filename: models/Comman_model.php

Line Number: 48