美文网首页
17/12/20 mysql中取值table所有列

17/12/20 mysql中取值table所有列

作者: 南大王 | 来源:发表于2017-12-20 21:56 被阅读5次

    取table所有字段名:   

    sql="select COLUMN_NAME from information_schema.COLUMNS where table_name = 'm_list' and table_schema = 'testdb'"

    取table中所有列:

    sql = "select * from match_list" 

     ---^ 得到该表所有字典数据的list集合。

    相关文章

      网友评论

          本文标题:17/12/20 mysql中取值table所有列

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