Duplicate Computers by IP number
select count(*) as COUNT, M.`IP`, M.NAME AS Computer
FROM MACHINE M
where IP not like '10.3.1.%'
and IP not like '172.16.254.%'
group by M.`IP`
having count > 1
ORDER BY NAME asc
FROM MACHINE M
where IP not like '10.3.1.%'
and IP not like '172.16.254.%'
group by M.`IP`
having count > 1
ORDER BY NAME asc
0 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question

so that the conversation will remain readable.