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

MySQL에서 일부를 제외한 테이블의 열 이름을 표시하는 방법은 무엇입니까?

<시간/>

일부 열 이름을 제외하려면 NOT IN을 사용하십시오.

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

mysql> create table DemoTable780 (
   CustomerId int,
   CustomerName varchar(100),
   CustomerAge int,
   CustomerCountryName varchar(100),
   isMarried tinyint(1)
);
Query OK, 0 rows affected (0.47 sec)

다음은 결과를 제외하는 쿼리입니다 -

mysql> select group_concat(column_name) from `information_schema`.`COLUMNS` m
   where
   table_schema = 'web' and
   table_name = 'DemoTable780' and
   column_name not in ('CustomerId','CustomerCountryName')
   group by table_schema,table_name;

그러면 다음과 같은 출력이 생성됩니다. -

+------------------------------------+
| group_concat(column_name)          |
+------------------------------------+
| CustomerName,CustomerAge,isMarried |
+------------------------------------+
1 row in set (0.01 sec)