1

いくつかの SQL クエリがあります。最初のクエリは顧客を選択し、2 番目のクエリは拡張機能のリストを選択します。

<?php
$sql2="SELECT * from client where parent_client_id = '1234' "; $rs2=mysql_query($sql2,$pbx01_conn) or die(mysql_error()); $count = mysql_num_rows($rs2); ?>

<table width="600" border="0" cellspacing="5" cellpadding="5">
    <tr>
        <td colspan="5"><strong>My VoIP Extensions (<?php echo $count; ?>)</strong></td>
    </tr>
    <tr>
        <td width="30%"><strong>Name</strong></td>
        <td width="30%"><strong>Extension Number</strong></td>
        <td width="30%"><strong>Type</strong></td>
    </tr>
    <?php
    while($result2=mysql_fetch_array($rs2))
    {
        $sql3="SELECT * from extension where client_id = '".substr($result2["id"],1)."' ORDER BY FIELD(type, 'term', 'queue', 'ivr', 'voicecentre', 'conference', 'callback', 'intercom', 'queuecentre') ";
        $rs3=mysql_query($sql3,$pbx01_conn) or die(mysql_error());
        $result3=mysql_fetch_array($rs3);

        if($result3["type"] == 'term')
        {
            $type = 'Phone Terminal';
        }
        elseif($result3["type"] == 'queue')
        {
            $type = 'Queue';
        }
        elseif($result3["type"] == 'ivr')
        {
            $type = 'IVR';
        }
        elseif($result3["type"] == 'voicecenter')
        {
            $type = 'Voicemail Centre';
        }
        elseif($result3["type"] == 'conference')
        {
            $type = 'Conference';
        }
        elseif($result3["type"] == 'callback')
        {
            $type = 'Callback';
        }
        elseif($result3["type"] == 'intercom')
        {
            $type = 'Intercom';
        }
        elseif($result3["type"] == 'queuecenter')
        {
            $type = 'Queue Login Centre';
        }

        echo '<tr class="notfirst" style="cursor:pointer;" onclick="document.location=\'sip:'.$result["customerid"].'*'.$result3["number"].'\'">
                    <td>'.$result2["name"].'</td>
                    <td>'.$result["customerid"].'*'.$result3["number"].'</td>
                    <td>'.$type.'</td>
                  </tr>';
    }
    ?>
</table>

$sql3はフィールドごとに注文しています:ORDER BY FIELD(type, 'term', 'queue', 'ivr', 'voicecentre', 'conference', 'callback', 'intercom', 'queuecentre')

しかし、正しく注文していません。order by 句が while ループにないためだと思います。

どうすればこれを回避して、私が望むように注文できますか?

4

1 に答える 1

0

間違った場所でクエリを注文しているように見えますが、予想される出力が何であるかを知らずに、これは $sql2 クエリがどうあるべきかの推測です:

SELECT client.* from client where parent_client_id = '1234'
JOIN extension on extension.client_id = client.client_id
ORDER BY FIELD(extension.type, 'term', 'queue', 'ivr', 'voicecentre', 'conference', 'callback', 'intercom', 'queuecentre')

また、@tadman によるコメントに注意し、mysqliデータを使用して適切にエスケープしてください。

于 2013-09-09T19:50:31.543 に答える