Hi,

I'd like to obtain the referenced table in sql statement to perform a
specific process with myFunction.

Select myFunction(avalue) from mytable;

In my java code I want to know if the column avalue is referenced to
mytable

The same thing if I write


Select myFunction(a.avalue) from mytable a;

or

Select myFunction(a.avalue, b.avalue2) from mytable a, mytable2 b;


Is there a simple way to do that or do I need to use the H2 expression
parser ?


Thanks a lot

Erwan.

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to