Hi,
We have a field in one of our tables that's either 10,11 or 12 characters long. We'd like to find those records where that value is exactly eleven characters, and unfortunately, we can't use the "length" function to do this on our web interface. Is there a way to pull it off with a rex expression, possibly using alnum?
For instance, our final query would look something like this:
select * from mytable where myfield like '/alnum{11,11}'
Thanks.
We have a field in one of our tables that's either 10,11 or 12 characters long. We'd like to find those records where that value is exactly eleven characters, and unfortunately, we can't use the "length" function to do this on our web interface. Is there a way to pull it off with a rex expression, possibly using alnum?
For instance, our final query would look something like this:
select * from mytable where myfield like '/alnum{11,11}'
Thanks.