My table has a varchar column that contains 5-digit numeric values.
When I use the like query to filter, I am not getting the expected resultss.
ZipCode
20019
10027
00199
10019
...
...
This is my condition where zipcode like '%0019%'
Condition only returns
20019
10019
but not 00199
Any help will be greatly appreciated.
When I use the like query to filter, I am not getting the expected resultss.
ZipCode
20019
10027
00199
10019
...
...
This is my condition where zipcode like '%0019%'
Condition only returns
20019
10019
but not 00199
Any help will be greatly appreciated.