S
Simon
I have the following query that shows mobile number for any customer
Is there a way it to dispay ever customer number and if the customer
does not have a mobile number its left black
SELECT tblCustomers.CustomerNumber, Replace([PhoneNumber], " ", "") AS
Mobile
FROM tblCustomers
WHERE [PhoneNumber] LIKE "07*"
Union
SELECT tblCustomers.CustomerNumber, Replace([MobileNumber], " ", "")
AS Mobile
FROM tblCustomers
WHERE [MobileNumber] LIKE "07*"
Is there a way it to dispay ever customer number and if the customer
does not have a mobile number its left black
SELECT tblCustomers.CustomerNumber, Replace([PhoneNumber], " ", "") AS
Mobile
FROM tblCustomers
WHERE [PhoneNumber] LIKE "07*"
Union
SELECT tblCustomers.CustomerNumber, Replace([MobileNumber], " ", "")
AS Mobile
FROM tblCustomers
WHERE [MobileNumber] LIKE "07*"