Home > Database > Mysql Tutorial > How to Find PostgreSQL Tables Containing a Specific Column?

How to Find PostgreSQL Tables Containing a Specific Column?

Susan Sarandon
Release: 2024-12-18 03:55:09
Original
163 people have browsed it

How to Find PostgreSQL Tables Containing a Specific Column?

Identifying Tables with a Specific Column in PostgreSQL

In PostgreSQL, you may need to locate tables that contain a particular column. This can be accomplished through the use of SQL queries.

Method 1:

Utilizing the pg_class and pg_attribute system tables, you can retrieve the desired information:

SELECT DISTINCT table_name
FROM pg_class c
JOIN pg_attribute a ON c.oid = a.attrelid
WHERE LOWER(a.attname) = LOWER('your_column_name');
Copy after login

Method 2:

Alternatively, you can leverage the information_schema.columns view:

SELECT table_name
FROM information_schema.columns
WHERE LOWER(column_name) = LOWER('your_column_name');
Copy after login

The above is the detailed content of How to Find PostgreSQL Tables Containing a Specific Column?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template