#!/usr/bin/env perl
 
 print "create table pivot ( id int );\n";
 for (0 .. 99) {
    print "insert into pivot values ( $_ );\n";
 }
 SELECT (date '2010-01-01' + id::integer) FROM pivot;

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS