facebook twitter hatena line email

Postgresql/DML

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 02:59時点における127.0.0.1 (トーク)による版 (ページの作成:「==データ挿入== insert into test1 values(1,'taro', true); insert into test1 values(2,'hiro', false); insert into test1 values(3,'masa', false); ==日付の加算...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

データ挿入

insert into test1 values(1,'taro', true);
insert into test1 values(2,'hiro', false);
insert into test1 values(3,'masa', false);


日付の加算

select updated + cast('30 dates' as interval);