Kod:
SELECT
p.id as 'UrunID',
p.productCode as 'Urun-Kodu',
p.productName as 'UrunAdi',
p.barcode as 'Barcode',
p.mpn as 'Ürün Mpn'
from product as p
round((p.price1*(cast((p.kdv_id+100) as float)/100)),2) as 'fiyat1',
round((p.price2*(cast((p.kdv_id+100) as float)/100)),2) as 'fiyat2'...