質問編集履歴

4

修正

2021/04/10 07:48

投稿

nt914
nt914

スコア14

test CHANGED
File without changes
test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- table_a(PKなし)
9
+ table_a(PKなし 各カラムのデータ型はtext)
10
10
 
11
11
  |id|name|
12
12
 

3

修正

2021/04/10 07:48

投稿

nt914
nt914

スコア14

test CHANGED
File without changes
test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- table_a
9
+ table_a(PKなし)
10
10
 
11
11
  |id|name|
12
12
 

2

環境追加

2021/04/10 07:43

投稿

nt914
nt914

スコア14

test CHANGED
File without changes
test CHANGED
@@ -31,3 +31,9 @@
31
31
  select distinct id from table_a
32
32
 
33
33
  where id not in (select id from table_a where name is null);
34
+
35
+
36
+
37
+ 環境
38
+
39
+ PostgreSQL(9.5.13)

1

訂正

2021/04/10 07:41

投稿

nt914
nt914

スコア14

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,6 @@
1
1
  下記テーブルでnameがnullでないidを重複なく取得したいです。
2
+
3
+ (nameが1件でもnullの場合、そのidは取得しない)
2
4
 
3
5
 
4
6