Can SQL statements evaluate expressions?  I want to store thousands of
equations, and return a subset when I plug in a value.

For instance, if I stored the following two equations:
x = y + 5;
x = 100 / y;

I might want to query for all records whose x is less than 10 when y is
equal to 3.  I'd expect back the record associated with x = y + 5;

My motivation is to reduce storage and calculations for a spatial
program with moving objects.



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to