Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL에서 열 이름과 유형을 추출하는 방법은 무엇입니까?

<시간/>

열 이름 및 유형을 추출하려면 INFORMATION_SCHEMA.COLUMNS −

를 사용하십시오.
select concat(column_name,'=',data_type) as anyAliasName from information_schema.columns
where table_schema= yourDatabaseName and table_name= yourTableName;

먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable1812
     (
     Id int,
     FirstName varchar(20),
     Age int,
     isMarried boolean,
     status ENUM('ACTIVE','INACTIVE')
     );
Query OK, 0 rows affected (0.00 sec)

다음은 MySQL에서 열 이름과 유형을 추출하는 쿼리입니다.

mysql> select concat(column_name,'=',data_type) as COLUMNNAMEANDTYPE from information_schema.columns
     where table_schema= 'web' and table_name= 'DemoTable1812';

이것은 다음과 같은 출력을 생성합니다 -

+-------------------+
| COLUMNNAMEANDTYPE |
+-------------------+
| Id=int            |
| FirstName=varchar |
| Age=int           |
| isMarried=tinyint |
| status=enum       |
+-------------------+
5 rows in set (0.00 sec)