Subject: Re: Trouble with position!
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 15 Apr 2005 10:43:42 +0100
|
> df_column[position()]
df_column[3] is short for df_column[position()=3]
and so selects the 3rd df_col
similarly
df_column[position()] is short for df_column[position()=position()]
and so selects every df_column as the predicate is always true.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|