hi,
is it possible to reference a value in a where clause?
example:
Code:
select * from staff where salary > 5000;
'staff' is a view and depending on the comparison value (here 5000) which is placed in the above select statement I would need to calculate another value. At the moment I solved the problem by an additional field which gets filled from an extra table which has to be updated with an extra job regularly.
It is important that the 'users' can work with normal SQL syntax, having them to add function calls or something like this is not an option.
Thanks in advanve for any help!