User Profile

Collapse

Profile Sidebar

Collapse
snots34
snots34
Last Activity: Feb 25 '14, 04:53 AM
Joined: Feb 24 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • how can I manipulate my XML ouput using an XSL stylesheet

    I have an SQL Query that is outputting as XML like this:
    Code:
    <root>
    <ELECTION>
        <title1>Carroll County Board Dist. 2</title1>
        <PrecintPercent>100</PrecintPercent>
        <Winner>5188</Winner>
        <WinningVotes>1445</WinningVotes>
        <WinningParty>D</WinningParty>
        <Winner1>Gary Imel</Winner1>
    ...
    See more | Go to post

  • SQL Query- XML Place Multiple Results into Multiple Nodes

    This is my query:

    Code:
    select  rc.[race number] AS RaceNumber,
        max(case when seqnum = 1 then title1 end) as title1,
        max(case when seqnum = 1 then [precinct percent] end) as PrecintPercent,
        max(case when seqnum = 1 then [candidate num] end) as Winner,
        max(case when seqnum = 1 then Votes end) as WinningVotes,
        max(case when seqnum = 1 then party end) as WinningParty,
        max(case
    ...
    See more | Go to post
No activity results to display
Show More
Working...