E EllenM Apr 23, 2009 #1 I'd like an escape character parentheses, so I can use "(letter)" as a criteria. Thanks in advance for your help, Ellen
I'd like an escape character parentheses, so I can use "(letter)" as a criteria. Thanks in advance for your help, Ellen
M Michel Walsh Apr 23, 2009 #2 SELECT * FROM table WHERE field = "(letter") or, in a context where you need it as a string " SELECT * FROM table WHERE field = '(letter)' " or " SELECT * FROM table WHERE field = ""(letter)"" " Vanderghast, Access MVP
SELECT * FROM table WHERE field = "(letter") or, in a context where you need it as a string " SELECT * FROM table WHERE field = '(letter)' " or " SELECT * FROM table WHERE field = ""(letter)"" " Vanderghast, Access MVP
M Michel Walsh Apr 23, 2009 #4 Yep, I made a typo in the first case, the closing parenthesis had to be inside the string. SELECT * FROM table WHERE field = "(letter)" Vanderghast, Access MVP
Yep, I made a typo in the first case, the closing parenthesis had to be inside the string. SELECT * FROM table WHERE field = "(letter)" Vanderghast, Access MVP