Is there any query or function which can convert any no into words. Likes 1001 into One thousand one etc. i am using sql server 2005.
相关问题
- SQL join to get the cartesian product of 2 columns
- sql execution latency when assign to a variable
- Difference between Types.INTEGER and Types.NULL in
- What is the best way to cache a table from a (SQL)
- php PDO::FETCH_ASSOC doesnt detect select after ba
There is no such query. you need to create your own procedure and then you can use it.
hi try the Below proc.... it gives the output you need....
Procedure :
Test Queries.....
Source From : http://www.sqlusa.com/bestpractices2008/number-to-words/
you could try this it works in oracle:
or see here for a detailed link re how to do it