How can I do somethig like this in MYSQL?
SELECT MyFunction(x) where x in (1,2,7,20,30);
Seems like a simple query should exist for this and in Oracle I can do it easily using the Dual table but I don't see a trick to do this in MySQL. NOTE that in my case 1,2,7,20,30 do NOT come from a table (in that cast it would be easy, just a simple join). In my situation I will be generating the query ( in particular the integer values) in C# and then making the DB Call.
Any Ideas?