How would I find address records the do not contain a digit followed by a space? (eg., 15SMith St. as opposed to 15 Smith St)
WHERE a.address not like '.[0-9] .'
is clearly not working for me.
How would I find address records the do not contain a digit followed by a space? (eg., 15SMith St. as opposed to 15 Smith St)
is clearly not working for me. |
||||
You may use
So, you may use
Here, |
|||
|
WHERE a.address NOT SIMILAR TO '%[0-9] %'
? – Wiktor Stribiżew 2 days ago