I have a table where some times the user enters a container number but presses the space button onece or twice. I like to write a query to return all records with leading blank spaces
What is the best way to do this?
Only row 2 need to be returned
Thanks for any help
RJL
What is the best way to do this?
Code:
SELECT
I.ROWNUM,
I.CONTAINER_ID
FROM
IT_DATA_SHIPPING I
WHERE
?????
Code:
ROWNUM CONTAINER_ID
1 932566854711
2 932566854821
3 932566854960
Only row 2 need to be returned
Thanks for any help
RJL