美文网首页coder
MySQL查询表字段信息

MySQL查询表字段信息

作者: S拒绝拖延 | 来源:发表于2019-07-11 10:06 被阅读0次
    SELECT
        column_name,
        column_comment,
        data_type
    FROM
        information_schema. COLUMNS
    WHERE
        table_name = 'tablename'
    AND table_schema = 'database_name'
    

    相关文章

      网友评论

        本文标题:MySQL查询表字段信息

        本文链接:https://www.haomeiwen.com/subject/giqrkctx.html