Hi Experts,
I have a column called check_num (bank check number) as VARCHAR2 type in a payment_line table(Oracle).
The requirement is "I have to search all those checks which numbers are greater than 12345.
Please suggest how can I achieve this?
|
|
|||||||||||
|
|
|
There most likely is a more elegant solution, but this should do the trick:
edit: If I understand your comment to Adam Paynter, for input of:
and you used
Can you confirm that both
edit 2 OK, I think I see where you are going with this. You are looking to get the rows in the db that have been entered after the input row. If you look at my formatted list above, you will see that your result set is everything below your input string. So, with that in mind, i submit for your approval the following:
|
||||||
|
|
|
Hi I hope the following might help you -
cheers |
||||||||||||
|
|
|
Unfortunately, Oracle does not provide a handy function such as
However, there is a way to emulate such a function:
The
Therefore, if |
||
|
|
|
It's tricky to use to_number() in this requirement because forcing Oracle to apply a check that the value is safe to convert to a number before it applies the TO_NUMBER function is not so easy, and an ORA-01722 error might surface in the future. I think that I would:
You might ask for the creation of an index on LPAD(pl.check_num,10,'0') to help with this. |
||
|
|
|
|
If you're on 10g or later you can use regular expressions with an inline view. The inner select is to get only the numeric check numbers. Then converting and using the where clause is easy. Something like select * from ( select * from payment_line where regexp_like (check_num,'^[0-9]*$') ) where to_number (check_num) > 12345; Of course, this only works if you want all numeric check numbers greater than 12345. If you want "numbers" like 1A123 included as well, that's a different story. |
||
|
|
|
|
9i+:
10g+:
The WITH clause is called subqery factoring in Oracle; it's called a Common Table Expression in SQL Server. Either case, it is better to use than an inline view - which is what you'd have to do to change the 9i example to get it to work on earlier versions of Oracle. It's quite the design flaw to use VARCHAR2 for a cheque number. If you can't get the DDL changed, you might want to at least look at creating an actual view (possibly materialized) & get the data from there. |
||
|
|