I have this SQL:
select c.Name,cu.CompanyName,OfficialId,OrderOption, c.code + o.VATId as VATId,
cast(round(TotalPriceIncVATSEK,0) AS decimal(10,0)) as Price,pp.Name as PaymentProcessor
from [order] o, customers cu, countries c,paymentprocessor pp
where paid = 1 and o.vatid !='' and vatadded =...