2004-08-18から1日間の記事一覧

PostgreSQL難しい

# select count(*) from table where to_date('20040101','YYYMMDD') -1 >to_date('20040101','YYYMMDD'); count - 0 (1 row)# select count(*) from table where ( (to_date(foo_date ,'YYYYMMDD')+ bar_num) ) ERROR: operator does not exist: date + num…

メモ

http://homepage2.nifty.com/sak/w_sak3/doc/sysbrd/sak3sql.htm

■DBI のインストール # cd /usr/local/src/ # tar xfz /〜〜/DBI-1.37.tar.gz # cd /usr/local/src/DBI-1.37 # perl Makefile.PL # make # make test # make install ■ DBD::Pg のインストール 先に、DBIをインストールしてる必要あり # cd /usr/local/src/ …