find sql table name with a particular column

前端 未结 3 568
予麋鹿
予麋鹿 2020-12-14 15:31

Is their any other way or sql query to find the database table names with a particular column than shown below,

SELECT TABLE_NAME FROM INFORMATI         


        
3条回答
  •  [愿得一人]
    2020-12-14 16:16

    In SQL Server, you can query sys.columns.

    Something like:

     SELECT
         t.name
     FROM
         sys.columns c
            inner join
         sys.tables t
            on
               c.object_id = t.object_id
     WHERE
         c.name = 'NameID'
    

    You might want an additional lookup to resolve the schema name, if you have tables in multiple schemas.

提交回复
热议问题