2009-04-10から1日間の記事一覧

エクゼキュータ。集約(Aggregate)

適当なクエリを流して、GROUP BYによる集約がどう実行されるのか見てみた。 DDLとデータ create table person ( name text primary key, country text not null, age integer not null ); insert into person values ('aaa', 'jp', 20), ('bbb', 'us', 30), …