so I have this table. I need from it - translated_name in US, translated_description also in US, translated_name in RU and translated_description in RU. And this is the problem - I need to query 4 results from two rows... I have tried several options, including UNION ALL, but it orders them one below the another - I need 4 columns next to each other... Thank you in advance!
(SELECT
TRANSLATED_NAME AS US_NAME,
TRANSLATED_DESCRIPTION AS US_DESC
FROM PRODUCT_DESCRIPTIONS PD
WHERE PD.TRANSLATED_NAME LIKE '%Monitor%'
AND PD.LANGUAGE_ID = ('US'))
UNION ALL
(SELECT
TRANSLATED_NAME AS RU_NAME,
TRANSLATED_DESCRIPTION AS RU_DESCRIPTION
FROM PRODUCT_DESCRIPTIONS PD
WHERE PD.LANGUAGE_ID = 'RU'
AND PD.TRANSLATED_NAME LIKE '%Монитор%');