vote up 0 vote down star

I have a program (flex) that queries a database and gets back a dataset (value, timestamp). In the program I then put each value in the set through an algorithm to get a new value resulting in all the values being transformed. Instead of having to do this transformation of data in my program I would like mysql to do it and send the results back. Essentially, I would like to do a SELECT statement that returns a modified dataset.

flag

61% accept rate
@asawilliams - can you give an outline of what you want to achieve? Otherwise responses may be more general than you'd like. – martin clayton Nov 7 at 2:00
If you're at all worried about performance, I would recommend keeping your transformation logic in your program instead of in sql. It is almost certainly faster to do it in your programming language, and the database tends to be the bottleneck in most applications so it helps to keep the database as unloaded as possible. Of course, if speed isn't an issue do whatever makes for more readable code... – Keith Randall Nov 7 at 3:12

2 Answers

vote up 0 vote down

You might be able to do it as part of your data retrieval statement, i.e., an SQL SELECT. Whether this is sensible or not depends on the complexity of what you want to do. Dense logic in SQL functions can be pretty much 'write-once never comprehend again'.

I'd review the available MySQL functions to see whether you can achieve what you're after easily. If not, I'd advise you to keep that stuff in the client.

link|flag
vote up 0 vote down

Assuming the computation can only be done in a stored procedure or function, yes - as long as you are using MySQL 5.0+. I recommend reading this article on MySQL stored procedures & functions.

link|flag

Your Answer

Get an OpenID
or

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