select name from sys.tables where name like '%JPro_VP_Service%'
My above query returns 26 table names.
Now I'm trying to write a query to check in every table return from above query.
select * from JPro_VP_Service --consider this is my first table like wise I want to search in 26 tables return from above query
where row_id like '%1-101%' or row_id like '%1-102%'
I think I need to write for or cursor to accomplish this can anyone help me how to achieve this?