First, the SQL change is simply:<div><br></div><div><b>SELECT * FROM rtcsqsummary WHERE csqname IN ('Sales', 'Support', 'etc.')</b></div><div><br></div><div>Second, if you're familiar with the MVC design, the View may need to be rewritten to accommodate the multiple rows returned.</div>
<div><br></div><div>As a concrete example, if I wrote the code as:</div><div><br></div><div><b>// Get record</b></div><div><b>record = rows[0];</b></div><div><b> // Do something with the record</b><br></div><div><br></div>
<div>I may need to change it to iterate over the record set instead:</div><div><br></div><div><b>// Get each record in the set</b></div><div><b>for (record in rows) {</b></div><div><b>    // Do something with the record</b></div>
<div><b>}</b><br><br>On Wednesday, August 20, 2014, Matthew Collins <<a href="mailto:mcollins@block.co.uk">mcollins@block.co.uk</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">






<div lang="EN-GB" link="blue" vlink="purple">
<div>
<p class="MsoNormal"><span style="color:#1f497d">Hi All,<u></u><u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d">I’ve got a wallboard running but its only reporting on a specific queue per website, I can change the CSQ its reports on by changing name of the CSQ in the below line of code.<u></u><u></u></span></p>

<p class="MsoNormal"><span style="color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d">Const SQL_Command = "select * from rtcsqssummary where csqname like 'CSQ_IT_Support’"<u></u><u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d">I’m trying to change the line to report on all CSQ collectively but everything I try breaks it.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d"><u></u><u></u></span></p>
<p class="MsoNormal"><span style="color:#1f497d">Thanks in advance<u></u><u></u></span></p>
</div>
</div>

</blockquote></div>