Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在“PostgreSQL”数据库中搜索特定的变量名。类似于以下“Teradata”查询
Select TableName, ColumnName from DBC.Columns Where ColumnName like (‘%profile%’)
PostgreSQL中有类似的查询吗?
Postgres 文档
SELECT table_name,column_name FROM information_schema.columns WHERE column_name like '%profile%'