आपके मामले में, मैं दो तालिकाओं का उपयोग करने की सलाह दूंगा:
Product
-------------------------------
ProductID | Price | Stock
-------------------------------
10 | 10 | 15
ProductLoc
-----------------------------------------------
ProductID | Lang | Name | Description
-----------------------------------------------
10 | EN | Bike | Excellent Bike
10 | ES | Bicicleta | Excelente bici
इस तरह आप उपयोग कर सकते हैं:
SELECT * FROM
Product LEFT JOIN ProductLoc ON Product.ProductID = ProductLoc.ProductID
AND ProductLoc.Lang = @CurrentLang
(यदि ProductLoc तालिका में वर्तमान लैंग के लिए कोई रिकॉर्ड नहीं है तो केवल बाएं शामिल हों)