Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Mysql converte um int para MAC


Supondo que você armazenou o endereço MAC suprimindo todos os separadores e convertendo o número HEX resultante em int, a conversão deste int para um endereço MAC legível por humanos seria:
function int2macaddress($int) {
    $hex = base_convert($int, 10, 16);
    while (strlen($hex) < 12)
        $hex = '0'.$hex;
    return strtoupper(implode(':', str_split($hex,2)));
}

A função é retirada de http://www.onurguzel .com/storing-mac-address-in-a-mysql-database/

A versão do MySQL para esta função:
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 ;

Você também pode fazer isso diretamente no SQL, assim:
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