If I get correctly, You need something like this:
select exists( select 1 from Table1 where Name1 like '%Belly%' )
union all
select exists( select 1 from Table2 where Name2 like '%Belly%' )
union all
select exists( select 1 from Table3 where Name3 like '%Belly%' )
If you need data, then
select 'Table1' as table_name /*needed columns here*/ from Table1 where Name1 like '%Belly%'
union all
select 'Table2' as table_name /*needed columns here*/ from Table2 where Name2 like '%Belly%'
remember that columns count and data types should match when use union all