Computer >> Máy Tính >  >> Lập trình >> MySQL

Làm thế nào để trích xuất tên và loại cột từ MySQL?

Để trích xuất tên và loại cột, hãy sử dụng INFORMATION_SCHEMA.COLUMNS -

select concat(column_name,'=',data_type) as anyAliasName from information_schema.columns
where table_schema= yourDatabaseName and table_name= yourTableName;

Đầu tiên chúng ta hãy tạo một bảng -

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)

Đây là truy vấn để trích xuất tên cột và nhập từ MySQL:

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

Điều này sẽ tạo ra kết quả sau -

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