video game spritesCreated: November 1, 2003 Last Updated: September 22, 2008 Please don't link directly to the images on VideoGameSprites.net; bandwidth isn't free. Total sprites to date: 27,625 続きを読む
PostgreSQLで時刻を扱うとき、PHPのdate()で出力しやすいようにUNIXTIME(int型)で保存しています。SQL内での扱いが逆に面倒になるのですが、UNIXTIMEからtimestamp型に戻すTIPS。 create table test ( accesstime integer not null ); select to_char('1970-0... 続きを読む
SQLite3 における日付データの扱い SQLite3 には、SQL99 の DATE や DATETIME に対応する日時を表す型は存在しません。SQLite3 で日時を扱う場合、Date And Time Functions で説明されている日付処理関数を使用し、TEXT 型や NUMERIC 型の列に日付データを作成... 続きを読む