0

我有一个数据库表,其中包含 6 个时区字段,分别称为 time1、time2、time3、time4、time5 和 time6。我需要查询这些字段并每次选择一个并按升序排列。其中一些时间可能是空白的,因此如果一个条目有 0900、1200、1500,而另一个条目有 0900、1100、1200、1500、1530、1800 和 2200。这将导致 0900、1100、1200、1500、1530、1800 和2200 正在输出。

这是一些示例代码:

$rndQuery=$this->DB->prepare("select time1, time2, time3, time4, time5, time6 
                                from customer
                                where customer_cycle_uid=".$this->DB->quote_smart($cycleRow['uid'])."
                                    and customer_uid=".$this->DB->quote_smart($customerRow['uid'])."
                                    and (blistered='1')
                                    and (prn!='1')");

如您所见,我只选择时间 1-6,因为此时我不需要其他字段。

4

0 回答 0