mysql 获取当前使用的数据库名称 及 表结构

获取当前使用的数据库名称
select database();

获取表完整结构
select table_schema,table_name,column_name,column_type,column_key,is_nullable,column_default,column_comment,character_set_name from information_schema.columns where table_schema='库名' and table_name='表明';
    原文作者:drzdryse
    原文地址: https://blog.csdn.net/m0_37711659/article/details/99290174
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞