psql 操作
データべース
の操作は次のように行なえる。
表 | 作成 | create table 表名(欄 1,欄 2,..); |
削除 | drop table 表名; |
表示 | \dt |
行 | 追加 | insert into 表名 values (値 1, 値 2, ...); |
表示 | select * from 表名;
select 欄 1, 欄 2, ... from 表名; |
変更 | update 表名 set 欄 = 値 where 欄 = 値; |
削除 | delete from 表名 where, 欄 = 値 ; |
例えば、update には次のような例がある。
wordpress=# update wp_options set option_value = 'http://www.example.com/blog' where option_id=1;
UPDATE 1
wordpress=# update wp_options set option_value = 'http://www.example.com/blog' where option_id=103;
UPDATE 1
wordpress=# update wp_options set option_value = 'http://www.example.com/blog' where option_name = 'siteurl';
UPDATE 1
wp_options は表の名前、
option_value は欄の名前、
id= の後の数字は他で調べて分っているとします。
|