SELECT taxid tax_class_id , concat('BTW ',taxpercentage  ,'% ')  tax_class_title  
FROM vtiger_producttaxrel
group by tax_class_id, taxpercentage
union
select 1 ,'Default' 


