hello,
I have the following SQL statement...
only SQL is moaning saying Full_Name is not a valid field?
Is it not possible to merge two columns and then do a comparison against the result of the merge?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!
I have the following SQL statement...
Code:
SELECT Members.FirstName + ' ' + Members.LastName AS Full_Name, Business_Register.*
FROM Business_Register
LEFT OUTER JOIN Members ON Business_Register.Adv_MemNo = Members.ID
WHERE (Full_Name LIKE '%myname%')
only SQL is moaning saying Full_Name is not a valid field?
Is it not possible to merge two columns and then do a comparison against the result of the merge?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!