Power Query を使用すると、カスタム SQL を使用せずにこれを簡単に実行できます。
A オーダーのみにフィルター: [タイプ] 列の [A] セルを右クリックし、[テキスト フィルター] > [等しい] をクリックします。
次に、AccountID と Group By を右クリックして、最小注文日を表示します。

動作を示すハードコーディングされたデータ:
let
Source = Csv.Document("AccountID,Type,Order_Date
1,A,1/4/13
1,A,1/5/13
1,B,1/1/13
2,A,5/5/13"),
#"Promoted Headers" = Table.PromoteHeaders(Source),
TypedData = Table.TransformColumnTypes(#"Promoted Headers",{{"AccountID", Int64.Type}, {"Order_Date", type date}}),
#"Filtered Rows" = Table.SelectRows(TypedData, each [Type] = "A"),
#"Grouped Rows" = Table.Group(#"Filtered Rows", {"AccountID"}, {{"MinDate", each List.Min([Order_Date]), type date}})
in
#"Grouped Rows"