I'm trying to find all the data in ColumnX where the Data begins with an \. Is `like '\%' what i'm looking for? But the \ has to be at the beginning
|
|
|||
|
Your syntax would work in standard SQL, because In PostgreSQL POSIX-style escapes in strings used to be interpreted, so you would have to double The SQL standard says otherwise. So the PostgreSQL people have been preparing to switch over to standard behavior for years, introduced the special escape-string-syntax With version 9.1 they finally switched to "standard-conforming" strings. Now, if the global user configuration uses
Else you have to write:
Also, be aware that |
|||||
|
|
Indeed '\%' is what you need. The following statement brings all the data where columnX starts with '\'.
|
|||||||||||
|


where col like '\%'? – Mikael Eriksson Feb 4 '12 at 14:25