simply just this one.
-----------
SELECT Computername, MACaddress, Lastchanged, NetworkID
FROM tblNetwork
order by Computername
-------------------
if i want to get the maxrecord for networkid so that i can get the latest mac here is the sql
-----------------
SELECT tblComputers.FQDN, a.Computername, a.MACaddress, a.Lastchanged, a.NetworkID
FROM tblNetwork AS a INNER JOIN
tblComputers ON a.Computername = tblComputers.Computername
WHERE (a.NetworkID =
(SELECT MAX(NetworkID) AS Expr1
FROM tblNetwork AS b
WHERE (a.Computername = Computername)))
ORDER BY a.Computername
------------------