so i have a column with numbers/letters containing 1-4 digits. Example: 001, 2A, 3, 105, 235C, something like that.
i have a script that works like a search engine, just a simple SELECT query really. some of my users have been complaining because i require them to enter the exact number for the script to work. like they must enter '001' and not '1'
is there an easy way to remedy this?
another question: what kind of query would i use to search a column having specific number of digits? for example, using the column mention above, I want to SELECT the rows that have 3 characters in that column, or 4 characters, something like that.
thanks!