본문 바로가기
Dev/DataBase

[MariaDB] 컬럼명 추출

by nakanara 2021. 2. 3.
반응형

MariaDB에서 테이블에 대한 컬럼명 나열이 필요해 information_schema를 참고하여 생성

  • information_schema.tables: 테이블 정보
  • information_schema.columns: 컬럼 정보
SELECT CONCAT('"', COLUMN_NAME, '",') AS a FROM information_schema.columns 
WHERE table_schema = 'schema'
AND TABLE_NAME = 'table'
ORDER BY ordinal_position

결과 화면

image

#mariadb #mysql #컬럼 

반응형

'Dev > DataBase' 카테고리의 다른 글

[MariaDB] 패스워드 초기화  (0) 2021.05.04
[MariaDB] 다중 인스턴스 실행  (0) 2021.03.25
[Oracle] SID/Service Name  (0) 2021.01.10
[MariaDB] 문자셋 변경 utf8 -> utf8mb4  (2) 2021.01.08
[ORACLE] 컬럼 정보 조회  (0) 2020.11.05