I have this SQL
SELECT 
      [Item No_]
      ,[Type]
      ,[Property]
      ,[Description]
  FROM [Navision4].[dbo].[3S Company A_S$Item Property] WHERE [Item No_] = '138150'
with this result
Item No_    Type    Property    Description
138150  LABEL   TEXTLINE1   Spiralledning
138150  LABEL   TEXTLINE2   RJ9 til RJ9
138150  LABEL   TEXTLINE3   2m
But, i want a result like this on above specific
Item No_ | TextLine1     | TextLine2   | TextLine3
138150   | Spiralledning | RJ0 til RJ9 | 2m
It's that possible somehow? (With 3 selects in one string?)
 
    