I have an update query and it looks as if it was not case sensitive. Is that true or do I need to specify case sensitive in the query?
Here is the query that ran:
UPDATE Variations INNER JOIN EmailIndexes ON [Variations].[Variations]=[EmailIndexes].[MailTo] SET EmailIndexes.UserNameTo = [Variations]![Name]
WHERE ((([EmailIndexes].[MailTo])=[Variations]![Variations]));
I just need to be sure that the values in my where clause are matching case.
thanks for the help.
Here is the query that ran:
UPDATE Variations INNER JOIN EmailIndexes ON [Variations].[Variations]=[EmailIndexes].[MailTo] SET EmailIndexes.UserNameTo = [Variations]![Name]
WHERE ((([EmailIndexes].[MailTo])=[Variations]![Variations]));
I just need to be sure that the values in my where clause are matching case.
thanks for the help.