Si votre lot (ce que vous exécutez dans un appel donné) a une requête, alors relatif à ce lot, cette requête occupe 100 % car il s'agit de la seule requête de ce lot.
C'est-à-dire :
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)