Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
4  
Which database are you using? – Eric Petroelje Feb 1 '11 at 13:10
@Eric - Why does it matter what database they are using? Surely more important to know what RDBMS they are using? – Martin Smith Feb 1 '11 at 13:25
1  
@Martin - by "database", I meant RDBMS vendor. Probably should have been more clear with my terminology. – Eric Petroelje Feb 1 '11 at 13:26
@Eric - I know I was just being pedantic. For some reason that particular misuse of terminology irritates me! – Martin Smith Feb 1 '11 at 13:28

2 Answers

up vote 1 down vote accepted

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

select 'F' + cast(cast(round ( 5000.1 / 1000, 0)as int) as nvarchar(50))

produces output F5

share|improve this answer

This will work in Oracle :

 select 'F' || round (acq.store_size_net / 1000, 0) from acq 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.