Hi
I have a table with following columns and data
FldID | Rev | Words
10257 2 Some text is present here
10257 3 I changed this text
10258 2 Some more text for another item
10258 3 Dummy text
10258 6 Some more dummy text
10259 2 Sample query text
Words is a text data type. I want to write a query to extract "Words" from the above table for a combination of FldID with MAX(Rev)
Means for the above table output should be -
FldID | Rev | Words
10257 3 I changed this text
10258 6 Some more dummy text
10259 2 Sample query text
Pls. suggest.
Thanks