Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[Blue]DECLARE[/Blue] @DivElecID [Blue]int[/Blue]
[Blue]DECLARE[/Blue] @MaxVotes [Blue]int[/Blue]
[Blue]SET[/Blue] @DivElecID [Gray]=[/Gray] 10
[Blue]SET[/Blue] @MaxVotes[Gray]=[/Gray][Gray]([/Gray][Blue]SELECT[/Blue] [Fuchsia]MAX[/Fuchsia][Gray]([/Gray]VotesReceived[Gray])[/Gray]
[Blue]FROM[/Blue] dbo.Candidate[Gray])[/Gray]
[Blue]UPDATE[/Blue] dbo.Candidate
[Blue]SET[/Blue] Winner [Gray]=[/Gray] 1
[Blue]WHERE[/Blue] VotesReceived [Gray]=[/Gray] @MaxVotes [Gray]AND[/Gray]
DivElecID [Gray]=[/Gray] @DivElecID