select column_name
from information_schema.columns
where table_name = 'agentinfo' and column_name like '%install%';
column_name
--------------
_installdate
(1개 행)
information_schema.columns
- 데이터베이스의 모든 테이블과 컬럼에 대한 메타데이터를 포함하는 표준 뷰
'DataBase > postgreSQL' 카테고리의 다른 글
[PostgreSQL] 데이터베이스 관리 - 권한 (0) | 2024.12.12 |
---|---|
[PostgreSQL] 데이터베이스 관리 - 테이블스페이스 (0) | 2024.12.12 |
[PostgreSQL] DB 로그인시 자동접속 설정하기(pgpass.conf) (0) | 2024.12.03 |
[PostgreSQL] idle in transaction 설정 (0) | 2024.10.25 |
[PostgreSQL] initDB 실패 (0) | 2024.10.11 |
select column_name
from information_schema.columns
where table_name = 'agentinfo' and column_name like '%install%';
column_name
--------------
_installdate
(1개 행)
information_schema.columns
- 데이터베이스의 모든 테이블과 컬럼에 대한 메타데이터를 포함하는 표준 뷰
'DataBase > postgreSQL' 카테고리의 다른 글
[PostgreSQL] 데이터베이스 관리 - 권한 (0) | 2024.12.12 |
---|---|
[PostgreSQL] 데이터베이스 관리 - 테이블스페이스 (0) | 2024.12.12 |
[PostgreSQL] DB 로그인시 자동접속 설정하기(pgpass.conf) (0) | 2024.12.03 |
[PostgreSQL] idle in transaction 설정 (0) | 2024.10.25 |
[PostgreSQL] initDB 실패 (0) | 2024.10.11 |