Home Page for the TeradataForum
 

Archives of the TeradataForum

Message Posted: Wed, 28 Feb 2007 @ 20:36:42 GMT


     
  <Prev Next>   <<First <Prev Next> Last>>  


Subj:   Re: Is there any way to find all tables which have two particular column in a database
 
From:   Donna Poston

Murugesan, you can use a derived table to find all the tables/views having a columnname client_id and join to the derive table.

Example

     select * from dbc.columns a
                           , (select databasename, tablename
                              from dbc.columns where columnname =
     'client_id')
     t1
     where a.databasename = t1.databasename
        and  a.tablename = t1.tablename
        and a.columnname = 'art_no'


     
  <Prev Next>   <<First <Prev Next> Last>>  
 
 
 
 
 
 
 
 
  
  Top Home Privacy Feedback  
 
 
Copyright for the TeradataForum (TDATA-L), Manta BlueSky    
Copyright 2016 - All Rights Reserved    
Last Modified: 15 Jun 2023