आपको सभी तालिका नाम INFORMATION_SCHEMA.TABLES से मिलते हैं। तो बस उन्हें पाने के लिए अपने मानदंड लागू करें:
select table_name
from information_schema.tables
where table_type = 'BASE TABLE'
and table_name like 'xx\_______\_T' escape '\'
and table_name >= 'xx_' + CAST(@FirstTableMonth as varchar) + '_T';
SQL fiddle:http://www.sqlfiddle.com/#!6/7b4f5/ 2