The score field of etx_ReturnType
You can also limit the number of rows returned by setting a document score standard in the score field of the etx_ReturnType.
The following query specifies that only those documents that have
a document score of 85 or better are to be returned:
SELECT rc.score, id, description FROM videos
WHERE etx_contains ( description,
Row('multimedia document editor' ,
'PATTERN_TRANS & PATTERN_SUBS'),
rc # etx_ReturnType) AND
rc.score > 85 ;
See Document scoring for fuzzy searches for an additional example of how to rank rows using the rc.score SLV and an ORDER BY clause.