質問編集履歴
2
大事な要件の書き忘れ
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
|id|name|sort_order|
|
1
|
+
|id|category|name|sort_order|
|
2
2
|
|
3
|
-
|:--|:--:|--:|
|
3
|
+
|:--|:--:|:--:|--:|
|
4
4
|
|
5
|
-
|1|apple|1|
|
5
|
+
|1|fruit|apple|1|
|
6
6
|
|
7
|
-
|2|grape|2|
|
7
|
+
|2|fruit|grape|2|
|
8
8
|
|
9
|
-
|3|orange|3|
|
9
|
+
|3|fruit|orange|3|
|
10
10
|
|
11
|
-
|4|c
|
11
|
+
|4|Vegetables|carrot|4|
|
12
12
|
|
13
|
-
|5|
|
13
|
+
|5|Vegetables|garlic|5|
|
14
14
|
|
15
15
|
|
16
16
|
|
@@ -30,22 +30,34 @@
|
|
30
30
|
|
31
31
|
期待結果
|
32
32
|
|
33
|
-
|id|name|sort_order|
|
33
|
+
|id|category|name|sort_order|
|
34
34
|
|
35
|
-
|:--|:--:|--:|
|
35
|
+
|:--|:--:|:--:|--:|
|
36
36
|
|
37
|
-
|1|apple|1|
|
37
|
+
|1|fruit|apple|1|
|
38
38
|
|
39
|
-
|2|grape|2|
|
39
|
+
|2|fruit|grape|2|
|
40
40
|
|
41
|
-
|
|
41
|
+
|4|fruit|peach|3|
|
42
42
|
|
43
|
-
|
|
43
|
+
|3|fruit|orange|4|
|
44
44
|
|
45
|
-
|5|c
|
45
|
+
|5|Vegetables|carrot|1|
|
46
46
|
|
47
|
-
|6|
|
47
|
+
|6|Vegetables|garlic|2|
|
48
48
|
|
49
49
|
|
50
50
|
|
51
51
|
postgresです。
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
失礼しました、12:50追記ーーーーーーーーーーーーーーーーーーー
|
58
|
+
|
59
|
+
これは、カテゴリーの中でに限定することは可能ですか?
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
カテゴリーfruitの2と3の間に新データ(peach)を追加したい。
|
1
.
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
postgresでカラムのデータに連番で設定されているものの途中に、
|
1
|
+
postgresでカラムのデータに連番で設定されているものの途中に、データを挿入しそれ以降の値を再度連番に設定したい場合
|
test
CHANGED
File without changes
|