I am trying to retrieve all the column names from Salesforce by SOQL Query that I get via Pentaho as well with the following code
select QualifiedApiName
from FieldDefinition
where EntityDefinition.DeveloperName='Account'
Pentaho lists 65 fields, the query only 50. The following fields are missing (list contains 16 instead of 15 fields for some reason)
BillingStreet
BillingCity
BillingState
BillingPostalCode
BillingCountry
BillingLatitude
BillingLongitude
BillingGeocodeAccuracy
ShippingStreet
ShippingCity
ShippingState
ShippingPostalCode
ShippingCountry
ShippingLatitude
ShippingLongitude
ShippingGeocodeAccuracy
Would you mind telling me the SOQL code I need in order the get all the 65 fields? Would appreciate that!