1

Hii Guys!!! i have a table named cdrcost which has dst column.I am need to retrieve the values based on digits in the column values. For example:

dst

0001266 2545 874545565612 25452`

Any suggestion will be welcomed

1
  • 1
    The first suggestion - read your question once again and say honestly: do you really think it's possible to get what you mean? Commented Nov 22, 2012 at 6:54

1 Answer 1

1

Assuming I understood what you're asking for:

SELECT * 
FROM cdrcost 
WHERE LENGTH(dst) = 31;
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.