質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -60,7 +60,9 @@
|
|
60
60
|
|
61
61
|
|| coalesce(typ, 'タイプ未定') || 'ユーザです' as ansswer_text
|
62
62
|
|
63
|
+
from t_user
|
64
|
+
|
63
|
-
|
65
|
+
where kaiin_no = 1009;
|
64
66
|
|
65
67
|
```
|
66
68
|
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,6 +20,64 @@
|
|
20
20
|
|
21
21
|
現在、学習している本では、この通りのコードが書いてあり、自分でもこの改行で良いと思うのですが、
|
22
22
|
|
23
|
-
どのように改行したら、
|
23
|
+
どのように改行したら、見やすいと思いますでしょうか?
|
24
24
|
|
25
25
|
初学者で申し訳ありません。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
##補足
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
3つの書き方のうち、どれが見やすいと感じるかアドバイスをお願い致します。
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
書き方1
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
select coalesce(reg_name, '無名ユーザ') || 'は' ||
|
42
|
+
|
43
|
+
coalesce(typ , 'タイプ未定') || 'ユーザです' as ansswer_text
|
44
|
+
|
45
|
+
from t_user
|
46
|
+
|
47
|
+
where kaiin_no = 1009;
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
書き方2
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
```
|
58
|
+
|
59
|
+
select coalesce(reg_name, '無名ユーザ') || 'は'
|
60
|
+
|
61
|
+
|| coalesce(typ, 'タイプ未定') || 'ユーザです' as ansswer_text
|
62
|
+
|
63
|
+
from t_user where kaiin_no = 1009;
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
書き方3
|
70
|
+
|
71
|
+
```
|
72
|
+
|
73
|
+
select
|
74
|
+
|
75
|
+
coalesce(reg_name, '無名ユーザ') || 'は'
|
76
|
+
|
77
|
+
|| coalesce(typ , 'タイプ未定') || 'ユーザです' as ansswer_text
|
78
|
+
|
79
|
+
from t_user
|
80
|
+
|
81
|
+
where kaiin_no = 1009;
|
82
|
+
|
83
|
+
```
|