sql >> Base de Datos >  >> RDS >> Mysql

Mysql convierte un int a MAC

Suponiendo que haya almacenado la dirección MAC suprimiendo todos los separadores y convirtiendo el número HEX resultante en int, la conversión de este int a una dirección MAC legible por humanos sería:

function int2macaddress($int) {
    $hex = base_convert($int, 10, 16);
    while (strlen($hex) < 12)
        $hex = '0'.$hex;
    return strtoupper(implode(':', str_split($hex,2)));
}

La función se toma de http://www.onurguzel .com/almacenamiento-de-direcciones-mac-en-una-base-de-datos-mysql/

La versión de MySQL para esta función:

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 ;

También puedes hacerlo directamente en SQL, así:

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