how to write a query in SOQL to get coulmn names

0
Hi, I want to fetch all the column names from salesforce table.so is there any query to fetch column names.Please help me with this. SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = N'NewCustomers' I tried above one but not getting result. thanks in advance
asked
1 answers
1

Mendix does not grant that level of access to the database, also not via OQL. Have you tried using MxModelReflection for this?

answered