092_Schema获取表字段的方式

Posted bandarifang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了092_Schema获取表字段的方式相关的知识,希望对你有一定的参考价值。

Map<String, Schema.SObjectField> objectFields = Schema.getGlobalDescribe().get(‘ObjectName‘).getDescribe().fields.getMap();
List<String> fieldList = new List<String>();

for(string s:objectFields.keySet()){
fieldList.add(s);
}

System.debug(‘************:‘+fieldList);

System.debug( ‘&&&&&:‘+String.join( fieldList, ‘, ‘) );

以上是关于092_Schema获取表字段的方式的主要内容,如果未能解决你的问题,请参考以下文章

mysql中information_schema.tables字段说明

mysql中获取表名&字段的查询语句

查询mysql所有表数据字段信息

查询mysql所有表数据字段信息

MYSQL获取一个表所有字段名的最佳办法是啥?

INFORMATION_SCHEMA获取数据库的信息