- 论坛徽章:
- 0
|
mysql> select cid,pdate,timeslot,length,purl from TBL_PROGRAM where pdate=curdate() order by pdate,timeslot;
+-----+------------+----------+--------+--------------------------+
| cid | pdate | timeslot | length | purl |
+-----+------------+----------+--------+--------------------------+
| 1 | 2010-03-19 | 720 | 200 | mms://10.10.100.252:7010 |
| 2 | 2010-03-19 | 840 | 100 | mms://10.10.100.252:7010 |
+-----+------------+----------+--------+--------------------------+
以上是查询出来的结果,我想要的是
查询出来没有下面这一行,只有表中的记录
+-----+------------+----------+--------+--------------------------+
| cid | pdate | timeslot | length | purl |
+-----+------------+----------+--------+--------------------------+
请大家帮帮忙 |
|