finding chr$(34)

David44Coder

Member
Local time
Tomorrow, 08:26
Joined
May 20, 2022
Messages
137
Have searched but found no answer I could use.
How might I correct this to show only records where MyField has chr$(34) ?

Select * from table1 Where MyField Like "***"

Thanks
 
Chr$(34) is Double quote.

Select * from table1 Where Instr(1, MyField, Chr(34)) <> 0;
 

Users who are viewing this thread

Back
Top Bottom