简体   繁体   中英

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

i have a mysql table shown below

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

I have a php script which i would want to print the following lines

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

I have written my script to as below

$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*)"}
}

How can i get it to get the previous time registered by the same ip and associate it to the next in line time

Try this:

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

Or if you want for each row:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM