Hi
I have this sql question...
This give me 2 rows that looks like this...
FileName Lang Artno
file1_se.txt SE 123456
file1_gb.txt GB 123456
Is it possible to get the result like this instead.
FileName1 FileName2
file1_se.txt file1_gb.txt
Best Regards
I have this sql question...
Code:
SELECT DISTINCT FileName, Lang, Artno
FROM dbo.tbl_ArticleFiles
WHERE (Artno = N'123456') AND (Lang = N'SE') OR (Lang = N'GB')
This give me 2 rows that looks like this...
FileName Lang Artno
file1_se.txt SE 123456
file1_gb.txt GB 123456
Is it possible to get the result like this instead.
FileName1 FileName2
file1_se.txt file1_gb.txt
Best Regards