show/hide this revision's text 3 added 289 characters in body

It looks like you want to to use Pivot - there are heaps of questions out there on stack overflow about them,

Heres the overview provided by msdn

http://msdn.microsoft.com/en-us/library/ms177410.aspx

-- Original answer from before the target result was updated follows

I think you need to include the Substring in the group by like

select substring(ltrim(str(blockid)),1,6) as ReportBlockId,
    count(*) as noofLP     
from LandParcels 
group by substring(ltrim(str(blockid)),1,6), stateorprivate 
order by blockid asc

Previously you were grouping on the whole BlockDd value, which would give a seperate result for each row becuase of the difference introduced by the BlockNo portion of the string

show/hide this revision's text 2 added 194 characters in body

I think you need to include the Substring in the group by like

select substring(ltrim(str(blockid)),1,6) as blockidReportBlockId,
    count(*) as noofLP     
from LandParcels 
group by substring(ltrim(str(blockid)),1,6), stateorprivate 
order by blockid asc

Previously you were grouping on the whole BlockDd value, which would give a seperate result for each row becuase of the difference introduced by the BlockNo portion of the string

show/hide this revision's text 1

I think you need to include the Substring in the group by like

select substring(ltrim(str(blockid)),1,6) as blockid,
    count(*) as noofLP     
from LandParcels 
group by substring(ltrim(str(blockid)),1,6), stateorprivate order by blockid asc