I want to get a number 5000.1 and divide it by 1000 before adding an "F" infront of it.
How do i do this? I tried and failed this:
select "F" + round ( acq.store_size_net / 1000, 0) from acq
|
I want to get a number 5000.1 and divide it by 1000 before adding an "F" infront of it. How do i do this? I tried and failed this:
|
|||||||||||||
|
|
I suspect your missing the cast of the number to a text data type Without knowing the exact dialect of sql you're using im gonna hazard a guess at ms-sql
produces output
|
|||
|
|
|
This will work in Oracle :
|
|||
|
|