Find tables with specific word in name in SQL Server database

Query below finds tables with word 'product' in the name.

Query

select schema_name(t.schema_id) as schema_name,
       t.name as table_name
from sys.tables t
where t.name like '%product%'
order by table_name,
         schema_name;

Columns

  • schema_name - name of schema table was found in
  • table_name - name of found table

Rows

  • One row represents a table
  • Scope of rows: all found tables
  • Ordered by table name, schema name

Sample results

Comments are only visible when the visitor has consented to statistics cookies. To see and add comments please accept statistics cookies.
0
There are no comments. Click here to write the first comment.