posed,question,pivot,data,column,without,know
Quick Search for:  in language:    
posed,question,pivot,data,column,without,know
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
SQL Stats

 Code: 29,142 lines
 Jobs: 442 postings

 
Sponsored by:

 

You are in:

 
Login



Latest Code Ticker for SQL.
Access 2000 Tabular Form - Building a Query Command Function
By David Nishimoto on 8/23


sp_RestoreDatab ase
By Shane Lively on 8/23


fnCharPad
By Shane Lively on 8/23


Link_SQLServer_ Oracle
By Daniel G. Menendez on 8/20


SQL Strip Alpha/Numeric
By Jay Gardner on 8/19


how to apply a filter to an Access 2000 form by using a combo box as a filter parameter
By David Nishimoto on 8/16


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

Pivot Data based on Unknown Field Items

Print
Email
 
VB icon
Submitted on: 7/9/2001 9:26:15 PM
By: James Travis  
Level: Advanced
User Rating: By 4 Users
Compatibility:SQL Server 7.0

Users have accessed this code 4004 times.
 

(About the author)
 
     I was posed a question to pivot data on a column without knowing exactly what values exist.
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

--**************************************
--     
-- Name: Pivot Data based on Unknown Fie
--     ld Items
-- Description:I was posed a question to
--      pivot data on a column without knowing 
--     exactly what values exist.
-- By: James Travis
--
-- Inputs:You need to change so fields b
--     ut they are noted by name of what they d
--     o.
--
-- Returns:A pivot table based on values
--      you did not have to know.
--
-- Assumes:There is a downside to this i
--     n that the query so far can be only 8000
--      characters at most I am looking at othe
--     r was to increase this by using multiple
--      variables then combine in execute but h
--     ave not gotten to test yet.
--
-- Side Effects:Depending on the number 
--     of unknowns it will crash if it is large
--     r than 8000 characters of data. Also as 
--     this uses a cursor it can be slow so tes
--     t it before you use in production. You m
--     ay just want to use to build the query o
--     nce a day and output to someplace it can
--      be used from.
--
--This code is copyrighted and has-- limited warranties.Please see http://
--     www.Planet-Source-Code.com/xq/ASP/txtCod
--     eId.322/lngWId.5/qx/vb/scripts/ShowCode.
--     htm--for details.--**************************************
--     

DECLARE @SQLState VARCHAR(8000) --This is WHERE your sql string will be built
DECLARE @FieldPivotBasedOn VARCHAR(100) --This will hold each value WHEN we pull FROM CURSOR
/* No comma's here AS we may have no products AND we want each new output TO 
* ADD its own , so we do NOT have TO cut the last character OFF IF WHEN we loop thru.
*/
SET @SQLState = 'SELECT FieldColumnsAreFrom'
PRINT (@SQLState)
/* We are getting ALL the possible VALUES FOR Product elimating duplicates. */
DECLARE cur_Cases CURSOR FOR SELECT DISTINCT FieldPivotBasedOn FROM tblUse 
OPEN cur_Cases --Open the CURSOR
/* Get the next value FROM the CURSOR AND put IN variable. */
FETCH NEXT FROM cur_Cases INTO @FieldPivotBasedOn
WHILE @@FETCH_STATUS = 0 --As Long as we got data keep going.
    BEGIN
    /* Each time thru we will ADD another product AS a possiblity FOR this pivot. */
    SET @SQLState = @SQLState + ', SUM(CASE FieldPivotBasedOn WHEN ''' + @FieldPivotBasedOn + ''' THEN ValueIfCase ELSE ValueIfNotCase END) as [' + @FieldPivotBasedOn + ']'
    /* Get the next value FROM the CURSOR AND put IN variable. */
    FETCH NEXT FROM cur_Cases INTO @FieldPivotBasedOn
END 

CLOSE cur_Cases --We no longer need CURSOR so close DEALLOCATE cur_Cases --and free memory SET @SQLState = @SQLState + ' FROM tblUse GROUP BY FieldColumnsAreFrom' --Print (@SQLState) --This line is comme -- nted out, just uncomment to output the q -- uery this built for debugging. EXEC (@SQLState) --This line will EXECUTE the sql statement we built in @SQLState, ADD -- TO front to comment out.


Other 19 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Advanced category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments

 There are no comments on this submission.
 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | SQL Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.