I am trying to get all the attribute display names from the account entity.
I am using CRM 4.0 on premise so XRMToolBox is not an option.
I tried the following SQL query
Select * from [MetadataSchema].[Attribute] a inner join [MetadataSchema].[Entity] e on e.EntityId=a.EntityId where e.Name='account'
But it only has the Name and PhysicalName and not the display name.
What is the correct SQL query to get all the attribute display names from the account entity?