A Database Query contains the ampersat character (@) where the character does not represent a query parameter:
SELECT Department
WHERE Email='bryan@infoburst.net'
InfoBurst recognizes the @ character as representing a parameter. To work around this issue, add a backslash character (\) before the @ character:
WHERE Email='bryan\@infoburst.net'
Bryan Baca
A Database Query contains the ampersat character (@) where the character does not represent a query parameter:
SELECT Department
WHERE Email='bryan@infoburst.net'
InfoBurst recognizes the @ character as representing a parameter. To work around this issue, add a backslash character (\) before the @ character:
SELECT Department
WHERE Email='bryan\@infoburst.net'