I'm inserting information into an email alert via a SQL query. I have the query referencing 2 tables and inner joining them. The query works fine, but placed inside an alert it doesn't work right.
for example:select Last_Name, First_Name, Company, Job_Title, Business_Phone, Moblie_Phonefrom Contacts inner join Nodes on Contacts.Company = Nodes.Coopwhere Caption = 'Name_of_Node' This query works, but will not work in an alert. Can anyone please explain why?