T-SQL Problem - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T11:31:38Z http://stackoverflow.com/feeds/question/994582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/994582/t-sql-problem 0 T-SQL Problem Chandana De Silva 2009-06-15T05:22:36Z 2009-06-20T09:40:00Z <p>I have following table (SQL Server) Table name is LandParcels</p> <pre><code>Blockid ParcelNo Stateorprivate ======================== 11001901 30 Deemana 11001901 35 Deemana 11001901 41 State 11001901 45 State 11001901 110 Private 11001901 111 Private 11001902 1 Deemana 11001902 11 State 11001902 16 Private 11002001 15 Deemana 11002001 16 State 11003001 20 Private 11002003 2 Deemana 11002003 3 State 11003003 4 Private </code></pre> <p>Blockid (Numeric) = first 6 digits used for Cadastral Map No and last 2 digits for the Block No</p> <p>eg: 110019 is Cadastal map no and 01 is Block No.</p> <p>I used the following query</p> <pre><code>select substring(ltrim(str(blockid)),1,6) as blockid,stateorprivate, count(*) as noofLP from LandParcels group by blockid, stateorprivate order by blockid asc </code></pre> <p>Result is</p> <pre><code>Blockid Stateorprivate noofLP ======================== 110019 Deemana 2 110019 State 2 110019 Private 2 110019 Deemana 1 110019 State 1 110019 Private 1 110020 Deemana 1 110020 State 1 110020 Private 1 110020 Deemana 1 110020 State 1 110020 Private 1 </code></pre> <p>I want to get the following result for a report</p> <pre><code>blockid noofBlocks Deemana State Private Amt_of_Deemana_State_Private 110019 2 3 3 3 9 110020 2 2 2 2 6 </code></pre> <p>How to query this. Pl help me.</p> http://stackoverflow.com/questions/994582/t-sql-problem/994592#994592 -1 Answer by Tetraneutron for T-SQL Problem Tetraneutron 2009-06-15T05:29:52Z 2009-06-15T05:54:38Z <p>It looks like you want to to use Pivot - there are heaps of questions out there on stack overflow about them,</p> <p>Heres the overview provided by msdn</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms177410.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms177410.aspx</a></p> <p>-- Original answer from before the target result was updated follows</p> <p>I think you need to include the Substring in the group by like</p> <pre><code>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 </code></pre> <p>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</p> http://stackoverflow.com/questions/994582/t-sql-problem/994598#994598 1 Answer by Alex Martelli for T-SQL Problem Alex Martelli 2009-06-15T05:33:38Z 2009-06-15T05:33:38Z <p>You start your query:</p> <pre><code>select substring(ltrim(str(blockid)),1,6) as blockid </code></pre> <p>which immediately gives the DB an ambiguity -- in the rest of the query, does <code>blockid</code> stand for the original column of that name, or does it stand for this homonymous one?</p> <p><strong>don't do that</strong> -- it's absurd to overload a DB engine with even more ambiguity than it already had to deal with; use <code>as myblockid</code> or whatever here, and <code>myblockid</code> in the rest of the query when <strong>that</strong> is what you mean. This may not solve every problem, but it will make your life, the DB engine's, AND that of anybody trying to help you out, much less of a nightmare.</p> http://stackoverflow.com/questions/994582/t-sql-problem/994617#994617 2 Answer by uncleo for T-SQL Problem uncleo 2009-06-15T05:45:00Z 2009-06-15T05:45:00Z <p>I'm not going to check if this works, but you should look at using sum and case.</p> <pre><code>select substring(ltrim(str(blockid)),1,6) as blockid, sum(case stateorprivate when 'Deemana' then 1 else 0 end) as Deemana, sum(case stateorprivate when 'State' then 1 else 0 end) as State, sum(case stateorprivate when 'Private' then 1 else 0 end) as Private, count(*) as Amt_of_Deemana_State_Private from LandParcels group by blockid order by blockid asc </code></pre> http://stackoverflow.com/questions/994582/t-sql-problem/994634#994634 1 Answer by Jacob for T-SQL Problem Jacob 2009-06-15T05:51:21Z 2009-06-15T05:51:21Z <p>You could do something like this:</p> <pre><code>SELECT SUBSTRING(LTRIM(STR(Blockid)), 1, 6) AS blockid, COUNT(DISTINCT SUBSTRING(LTRIM(STR(Blockid)), 7, 2)) AS noofBlocks, SUM(CASE Stateorprivate WHEN 'Deemana' THEN 1 ELSE 0 END) AS Deemana, SUM(CASE Stateorprivate WHEN 'State' THEN 1 ELSE 0 END) AS [State], SUM(CASE Stateorprivate WHEN 'Private' THEN 1 ELSE 0 END) AS [Private], SUM(CASE Stateorprivate WHEN 'Deemana' THEN 1 WHEN 'State' THEN 1 WHEN 'Private' THEN 1 ELSE 0 END) AS Amt_of_Deemana_State_Private FROM LandParcels GROUP BY SUBSTRING(LTRIM(STR(Blockid)), 1, 6) </code></pre> <p>However, if the database schema is under your control, you should consider normalization.</p> http://stackoverflow.com/questions/994582/t-sql-problem/994641#994641 0 Answer by eed3si9n for T-SQL Problem eed3si9n 2009-06-15T05:56:29Z 2009-06-15T05:56:29Z <p>Something like this?</p> <pre><code>SELECT substring(ltrim(str(lp.blockid)),1,6) as blockid, w.noofBlocks x.Deemana, y.State, z.Private, COUNT(*) AS Amt_of_Deemana_State_Private FROM LandParcels lp INNER JOIN ( SELECT substring(ltrim(str(lp.blockid)),1,6) as myblockid, COUNT(*) AS Deemana FROM LandParcels lp2 WHERE Stateorprivate = 'Deemana' ) x ON (substring(ltrim(str(lp.blockid)),1,6) = x.myblockid) INNER JOIN ( SELECT substring(ltrim(str(lp.blockid)),1,6) as myblockid, COUNT(*) AS State FROM LandParcels lp3 WHERE Stateorprivate = 'State' ) y ON (substring(ltrim(str(lp.blockid)),1,6) = y.myblockid) INNER JOIN ( SELECT substring(ltrim(str(lp.blockid)),1,6) as myblockid, COUNT(*) AS Private FROM LandParcels lp4 WHERE Stateorprivate = 'Private' ) z ON (substring(ltrim(str(lp.blockid)),1,6) = z.myblockid) CROSS JOIN ( SELECT COUNT(DISTINCT substring(ltrim(str(lp.blockid)),1,6) as myblockid) FROM LandParcels lp5 ) w GROUP BY substring(ltrim(str(lp.blockid)),1,6) </code></pre> http://stackoverflow.com/questions/994582/t-sql-problem/994651#994651 0 Answer by Adam Porad for T-SQL Problem Adam Porad 2009-06-15T06:00:14Z 2009-06-15T06:00:14Z <p>I believe that this query will achieve your desired results, except that the NoOfBlocks field is the first column instead of the second column. I also used CadastalMapNo for the result set column name instead of blockid on the suggestion from Alex Martelli that it added ambiguity because there was already something else named blockid. The reason that I put the NoOfBlocks field as the first column is because I believe that SQLServer requires the count function to be the first field in the select list when the distinct keyword is used.</p> <p>I haven't actually tested this and it could have poor performance, but I'm pretty sure it's correct as I understand the question.</p> <pre><code> SELECT COUNT(DISTINCT SUBSTRING(LTRIM(STR(blockid)),7,8)) as NoOfBlocks, SUBSTRING(LTRIM(STR(blockid)),1,6) as CadastalMapNo, (CASE WHEN Stateorprivate='Deemana' then 1 else 0 end) as Deemana, (CASE WHEN Stateorprivate='State' then 1 else 0 end) as State, (CASE WHEN Stateorprivate='Private' then 1 else 0 end) as Private, COUNT(*) as Amt_of_Deemana_State_Private FROM LandParcels GROUP BY CadastalMapNo ORDER BY CadastalMapNo </code></pre>