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

What is the correct syntax to do a SQL Update on a column and divide its values by 1 000 000?

share|improve this question
OK, that's a valid question and everything but... upvoting it? A basic SQL UPDATE command? Really? – Adrian Carneiro Jun 15 '11 at 15:50
Well, I wasn't too sure about the SQL division (normally I do it via PHP, not SQL directly). Now I know it's the same thing (/) ;) – Adam Strudwick Jun 15 '11 at 15:52
1  
Hey @Adam, your question is OK. It is valid, as I said. I just don't see the point to whoever upvoted it, it's a simple simple concept. Don't get me wrong, your question is fine. – Adrian Carneiro Jun 15 '11 at 15:55

1 Answer

up vote 6 down vote accepted
UPDATE table SET column = column / 1000000
share|improve this answer
or 1e6 if that's available to you since it will reduce the chance of miscounting those zeros :-) – paxdiablo Jun 15 '11 at 15:48
1  
Also, you should beware of the difference between int division and float/double division – Adrian Carneiro Jun 15 '11 at 15:48
Didn't know you could specify numbers like that in SQL and I've been using SQL for a long time. Therefore, I wouldn't suggest doing that as most people will not know what 1e6 is! :) I just tried in sqlite and it works though. Is that part of the standard? – Steve Prentice Jun 15 '11 at 15:50

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.