I have a table (in a RethinkDB database) that has a bunch of documents with the field VIN0
. This field almost always stores numbers, as intended.
I had some data corruption recently where there are some strings in place of numbers for the field VIN0
. Queries I was using to manipulate this data now return the error: "e: Expected type NUMBER but found STRING in:"
I'd like to filter for the strings, but I can't seem to find them. Is there a way to use something like Number.isInteger()
to filter out these items within RethinkDB?
Thanks!