Wenn Ihr Stapel (was Sie in einem bestimmten Aufruf ausführen) eine Abfrage hat, dann relativ zu diesem Stapel belegt diese Abfrage 100 %, da sie die einzige Abfrage innerhalb dieses Stapels ist.
D.h.:
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)