簡體   English   中英

使用PHP從mysql表中獲取多行並描繪時間范圍

[英]Fetching multiple rows from mysql table and depicting time bounds using PHP

我有如下所示的mysql表

ip_add                      mac                     time
10.0.0.97                00 14 2A 2F 72 FE         2013-09-18 16:35:47
10.0.0.97                00 14 2A 2F 72 FE         2013-09-19 08:48:02
10.0.0.98                08 CC 68 71 A1 C0         2013-09-18 16:35:47
10.0.0.98                08 CC 68 71 A1 C0         2013-09-19 08:48:02

我有一個PHP腳本,我想打印以下幾行

The ip address 10.0.0.97 was used by MAC 00 14 2A 2F 72 FE from 2013-09-18 16:35:47 to 2013-09-19 08:48:02
The ip address 10.0.0.97 was used by MAC 00 14 2A 2F 72 FE from  2013-09-19 08:48:02 to present(i.e there has not been a further entry of that ip )
The ip address 10.0.0.98 was used by MAC 00 14 2A 2F 72 FE from 2013-09-18 16:35:47 to 2013-09-19 08:48:02
The ip address 10.0.0.97 was used by MAC 00 14 2A 2F 72 FE from  2013-09-19 08:48:02 to present

我已將腳本編寫如下

$var = $_POST['IP'](ip which will be obtained from form);
mysql_connect('localhost','root','mysql');
mysql_select_db('logs');
$result=mysql_query("select ip_add,mac from arp_table where ip_add='$var'");
$row=mysql_fetch_row($result);
$count=mysql_query("select COUNT (*)  from arp_table where ip_add='$var'");
$row2 =mysql_fetch_row($count);

echo "The number of instances this ip address was used is {$row2[0]}<br/>"

if($row2==1){
$time=mysql_query("select ip_add, time from arp_table where ip_add='$var'")
$time2=mysql_fetch_row($time);
echo "It was used from {$time2[1]} and it is still in use<br/>";}
else
{$time3=mysql_query("select ip_add,time from arp_table where ip_add='$var'");
while($row3=mysql_fetch_assoc($time3)){
echo "This ip was used by MAC {$row[1]} from (*I`M STUCK HERE*) to (*I`M STUCK HERE*)"}
}

我如何獲取它以獲取同一IP注冊的上一個時間並將其關聯到下一個在線時間

嘗試這個:

SELECT
    ip_add,
    mac,
    MIN(time) as from_time,
    MAX(time) as to_time
FROM 
    my_table
GROUP BY
    ip_add,
    mac

或者,如果您想要每一行:

SELECT
    a.ip_add,
    a.mac,
    a.time as from_time,
    (
        SELECT 
            time 
        FROM 
            my_table b 
        WHERE 
            b.ip_add = a.ip_add 
            AND a.time < b.time 
        ORDER BY 
            b.time 
        LIMIT 1
    ) as to_time
FROM 
    my_table a

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM