Guest_imported
New member
- Jan 1, 1970
- 0
Hello... This is what I am doing....
SELECT col1, col2, col3, col4, col5, (col1+col2+col3) FROM table WHERE (col1+col2+col3) < any_number and col1 = 'any_value' ORDER BY (col1+col2+col3);
What I wouuld like to do is place the result of the formula (col1+col2+col3) into an array to be used within the query.. I am using trig funcions in the real formula and I want to cut down on cpu time... Any suggestions... ??
Thanks in advance.
Kurt
SELECT col1, col2, col3, col4, col5, (col1+col2+col3) FROM table WHERE (col1+col2+col3) < any_number and col1 = 'any_value' ORDER BY (col1+col2+col3);
What I wouuld like to do is place the result of the formula (col1+col2+col3) into an array to be used within the query.. I am using trig funcions in the real formula and I want to cut down on cpu time... Any suggestions... ??
Thanks in advance.
Kurt