Click here to Skip to main content
15,897,291 members
Home / Discussions / Database
   

Database

 
QuestionMySQL query help Pin
eddjusted9-Nov-11 3:02
eddjusted9-Nov-11 3:02 
AnswerRe: MySQL query help Pin
Blue_Boy9-Nov-11 3:18
Blue_Boy9-Nov-11 3:18 
GeneralRe: MySQL query help Pin
eddjusted9-Nov-11 3:20
eddjusted9-Nov-11 3:20 
AnswerRe: MySQL query help Pin
Bernhard Hiller9-Nov-11 20:56
Bernhard Hiller9-Nov-11 20:56 
QuestionProblem in query Pin
uspatel8-Nov-11 18:52
professionaluspatel8-Nov-11 18:52 
AnswerRe: Problem in query Pin
_Damian S_8-Nov-11 18:59
professional_Damian S_8-Nov-11 18:59 
GeneralRe: Problem in query Pin
uspatel8-Nov-11 19:28
professionaluspatel8-Nov-11 19:28 
AnswerRe: Problem in query Pin
Blue_Boy8-Nov-11 21:36
Blue_Boy8-Nov-11 21:36 
GeneralRe: Problem in query Pin
uspatel9-Nov-11 1:31
professionaluspatel9-Nov-11 1:31 
Questionsaving changes to sqlserver2008 Pin
MalarGayu8-Nov-11 15:41
MalarGayu8-Nov-11 15:41 
AnswerRe: saving changes to sqlserver2008 Pin
_Damian S_8-Nov-11 17:54
professional_Damian S_8-Nov-11 17:54 
AnswerRe: saving changes to sqlserver2008 Pin
uspatel8-Nov-11 19:33
professionaluspatel8-Nov-11 19:33 
AnswerNot Allow Null ? Pin
David Mujica9-Nov-11 3:16
David Mujica9-Nov-11 3:16 
QuestionLesserOf function Pin
PIEBALDconsult8-Nov-11 15:05
mvePIEBALDconsult8-Nov-11 15:05 
AnswerRe: LesserOf function Pin
Andy_L_J8-Nov-11 21:28
Andy_L_J8-Nov-11 21:28 
GeneralRe: LesserOf function Pin
PIEBALDconsult9-Nov-11 1:45
mvePIEBALDconsult9-Nov-11 1:45 
AnswerRe: LesserOf function Pin
Andy_L_J9-Nov-11 7:33
Andy_L_J9-Nov-11 7:33 
AnswerRe: LesserOf function Pin
Jörgen Andersson8-Nov-11 22:50
professionalJörgen Andersson8-Nov-11 22:50 
QuestionAccumulation with multiple conditions Pin
VentsyV8-Nov-11 9:16
VentsyV8-Nov-11 9:16 
AnswerRe: Accumulation with multiple conditions Pin
Jörgen Andersson8-Nov-11 10:05
professionalJörgen Andersson8-Nov-11 10:05 
GeneralRe: Accumulation with multiple conditions Pin
VentsyV8-Nov-11 11:30
VentsyV8-Nov-11 11:30 
GeneralRe: Accumulation with multiple conditions Pin
Jörgen Andersson8-Nov-11 11:54
professionalJörgen Andersson8-Nov-11 11:54 
Probably.
But personally I'm reluctant to use SQL for presentation logics, you'll find that it isn't very flexible.
I would simply get the data you need:
SQL
Select  LocationID
       ,MeetingID
       ,Sum(Numvisitors) as TotalNumVisitors
From    Visitors
where   MeetingID IN (1,2)
Group By LocationID,MeetingID
And then do the Pivot in Reporting Services where it's called "Matrix control". (Here I assume that your "rdl report" means you're using SSRS)
Light moves faster than sound. That is why some people appear bright, until you hear them speak.
List of common misconceptions

QuestionHow can i check executing time from mssql2008? Pin
buffering836-Nov-11 19:49
buffering836-Nov-11 19:49 
AnswerRe: How can i check executing time from mssql2008? Pin
Wayne Gaylard6-Nov-11 20:04
professionalWayne Gaylard6-Nov-11 20:04 
AnswerRe: How can i check executing time from mssql2008? Pin
Corporal Agarn8-Nov-11 8:43
professionalCorporal Agarn8-Nov-11 8:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.