バッチ (特定の呼び出し内で実行しているもの) に 1 つのクエリがある場合、relative そのバッチ内の唯一のクエリであるため、そのクエリは 100% を占めます。
例:
BEGIN
SELECT * FROM table -- Will be 100% of batch
END
BEGIN
SELECT * FROM table -- Will be 50% of batch
SELECT * FROM table -- Will be 50% of batch
END
SELECT * FROM table -- Will be 100% of batch (implicit begin/end around it)