MYSQL数据库表名查询以及字段查询
程序员文章站
2024-03-21 21:39:16
...
- 查询自己创建的表名称
select table_name, table_comment, create_time, update_time from information_schema.tables
where table_schema = (select database()) and table_name NOT LIKE '%IN_%'
结果如下:
2.根据表名称查询指定表字段以及类型。
SELECT
TABLE_NAME,
column_name,
DATA_TYPE,
column_comment
FROM
information_schema.COLUMNS
WHERE table_name=''
结果如下: