Viewing 3 posts - 1 through 3 (of 3 total)
Thanks GSquared. I changed it into this:
SELECT temp.*, ISNULL(tsa.IPAddress, '') AS IP
FROM
(SELECT tblServers.*, tblCustomers.custNum
FROM tblServers, tblCustomers
WHERE (srvName LIKE '%'+@srvName+'%'...
April 17, 2008 at 1:16 pm
I have another question now.
Now the left join returns NULL values for servers that don't appear in the tblServersAddresses. If I want to show an empty filed, instead of NULL,...
April 16, 2008 at 12:44 pm
Thanks you all for the helpful replies.
I changed the query into this:
SELECT tt.*, tsa.IPAddress
FROM
(SELECT tblServers.*, tblCustomers.custNum
FROM tblServers, tblCustomers
WHERE (srvName...
April 16, 2008 at 8:24 am
Viewing 3 posts - 1 through 3 (of 3 total)