Answers for "how to search table name in sql"

SQL
12

sql server search column name in all tables

SELECT      COLUMN_NAME AS 'ColumnName'
            ,TABLE_NAME AS  'TableName'
FROM        INFORMATION_SCHEMA.COLUMNS
WHERE       COLUMN_NAME LIKE '%MyName%'
ORDER BY    TableName
            ,ColumnName;
Posted by: Guest on March-07-2020
2

sql server find table name

select * from sys.tables where name like '%tablename%'
Posted by: Guest on October-03-2020
0

sql find table by name

select table_schema,
       table_name
from information_schema.tables
where table_name like 'payment%'
      and table_schema not in ('information_schema', 'pg_catalog')
      and table_type = 'BASE TABLE'
order by table_name,
         table_schema;
Posted by: Guest on May-24-2021

Code answers related to "how to search table name in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language