Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question
This sounds like your data model could use some re-design. If that is the same data in those table, it should be stored in a single table. – a_horse_with_no_name Oct 23 '12 at 6:56

3 Answers

DECLARE @mn INT 
DECLARE @mx INT 
DECLARE @tblname VARCHAR(100); 

WITH cte 
     AS (SELECT Row_number() 
                  OVER ( 
                    ORDER BY (SELECT 0)) AS rn, 
                name 
         FROM   sys.tables 
         WHERE  name LIKE '%JPro_VP_Service%') 
SELECT @mn = Min(rn), 
       @mx = Max(rn) 
FROM   cte 

WHILE( @mn >= @mx ) 
  BEGIN 
      SELECT @tblname = name 
      FROM   cte 
      WHERE  rn = @mn 

      SELECT * 
      FROM   @tblname 
      WHERE  row_id LIKE '%1-101%' 
              OR row_id LIKE '%1-102%' 

      --Do something else 
      SET @mn=@mn + 1 
  END 
share|improve this answer

The easiest way to do this is Try this:

SELECT 'select * from ' + name 
       + ' where row_id         like ''%1-101%'' or row_id like ''%1-102%''' 
FROM   sys.tables 
WHERE  name LIKE '%JPro_VP_Service%' 

you will get all tables together with the same conditions. You could execute them together.

share|improve this answer

Yes, you would have to use a cursor for this, and probably also dynamic sql

Also see

Generate dynamic SQL statements in SQL Server

Dynamic SQL PROs & CONs

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.