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
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.