I have a table with the following structure:
PERSON   Sequence    TEXT
  1        1         John ran
  1        2         across the field
  2        1         Bill also
  2        2         ran across the field after John  
I would like to write a query that produces the following result:
 PERSON   TEXT
 1        John ran across the field
 2        Bill also ran across the field after John
Is something like this possible with T-SQL
 
     
    