Mike S.
05/05/2025, 7:28 PMUnthread
05/05/2025, 8:10 PMMike S.
05/05/2025, 8:15 PMMike S.
05/05/2025, 8:18 PMKathy Satterlee
05/05/2025, 9:07 PMSELECT
(SELECT GROUP_CONCAT (username) FROM users WHERE directory like "/Users%") as "users",
(SELECT GROUP_CONCAT (DISTINCT mac) FROM interface_details) as "mac_addresses"
Mike S.
05/05/2025, 9:20 PMKathy Satterlee
05/05/2025, 9:41 PMSELECT DISTINCT mac
FROM interface_details
WHERE EXISTS (
SELECT 1 FROM users where username='ksatter'
)
Mike S.
05/05/2025, 9:48 PMKathy Satterlee
05/05/2025, 10:17 PM