you can use the lag function to get the fields from the previous statement
Code:
lag( name) over( order by field_list )
you can find examples in docu "SQL Reference 1 ".
But your select has no previous statements because
WHERE NAME='LLL'
finds only 1 record according to your example. If your result set has more than 1 record you can use lag for previous and lead for the next record in the record set.