Zakładając, że zapisałeś adres MAC przez pominięcie wszystkich separatorów i przekonwertowanie wynikowej liczby HEX na int, konwersja z tego int na adres MAC czytelny dla człowieka wyglądałaby następująco:
Funkcjafunction int2macaddress($int) {
$hex = base_convert($int, 10, 16);
while (strlen($hex) < 12)
$hex = '0'.$hex;
return strtoupper(implode(':', str_split($hex,2)));
}
Funkcja jest pobierana z http://www.onurguzel .com/storing-mac-address-in-mysql-database/
Wersja MySQL dla tej funkcji:
delimiter $$
create function itomac (i BIGINT)
returns char(20)
language SQL
begin
declare temp CHAR(20);
set temp = lpad (hex (i), 12, '0');
return concat (left (temp, 2),':',mid(temp,3,2),':',mid(temp,5,2),':',mid(temp,7,2),':',mid(temp,9,2),':',mid(temp,11,2));
end;
$$
delimiter ;
Możesz to również zrobić bezpośrednio w SQL, w ten sposób:
select
concat (left (b.mh, 2),':',mid(b.mh,3,2),':',mid(b.mh,5,2),':',mid(b.mh,7,2),':',mid(b.mh,9,2),':',mid(b.mh,11,2))
from (
select lpad (hex (a.mac_as_int), 12, '0') as mh
from (
select 1234567890 as mac_as_int
) a
) b