SalesforceのSOQLを利用して日別のレコード作成数を取得する方法

SalesforceのSOQLを利用して日別のレコード作成数を取得する方法 開発者コンソールを開く Query Editorタブを開く 下記のSOQLを貼り付けて実行する。 selectday_only(createdDate),count(createdDate)fromaccountgroupbyday_only(createdDate)orderbycount(createdDate)desclimit10accountは取得したい任意のオブジェクト名に変えて実行してください。 参考 Is there a way to group by the date portion of a datetime field in SOQL?