回答編集履歴

2

追記

2018/06/20 08:07

投稿

sazi
sazi

スコア25173

test CHANGED
@@ -15,3 +15,9 @@
15
15
  ;
16
16
 
17
17
  ```
18
+
19
+
20
+
21
+ 件数が少ないようでしたら、DBツールを使用して直接手入力で修正も可能です。
22
+
23
+ postgresの標準ツールのpgadminでしたら、テーブルを選択して右クリック(データビュー→すべての列を表示)で表示された画面で、表示したい箇所をクリックすると変更が可能です。

1

修正

2018/06/20 08:07

投稿

sazi
sazi

スコア25173

test CHANGED
@@ -4,13 +4,13 @@
4
4
 
5
5
  update boards set board='変更後の文字', display_name='変更後の文字'
6
6
 
7
- where board='board1' and display_name='board1'
7
+ where board='board1' and display_name='Board 1'
8
8
 
9
9
  ;
10
10
 
11
11
  update boards set board='変更後の文字', display_name='変更後の文字'
12
12
 
13
- where board='board2' and display_name='board2'
13
+ where board='board2' and display_name='Board 2'
14
14
 
15
15
  ;
16
16