質問編集履歴
1
テーブル定義を追記。
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,3 +11,37 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
ご教授お願いします。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
※追記依頼が届いたため追記
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
テーブル定義は下記の通りです。
|
22
|
+
|
23
|
+
CREATE TABLE table
|
24
|
+
|
25
|
+
(
|
26
|
+
|
27
|
+
id bigint
|
28
|
+
|
29
|
+
type character varying(5)
|
30
|
+
|
31
|
+
version integer
|
32
|
+
|
33
|
+
create_datetime timestamp without time zone
|
34
|
+
|
35
|
+
create_user_id character varying(10)
|
36
|
+
|
37
|
+
update_datetime timestamp without time zone
|
38
|
+
|
39
|
+
update_user_id character varying(10)
|
40
|
+
|
41
|
+
);
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
A5:SQLを用いてクエリを実行しているのですが、クエリ自体にエラーはなく実行されます。
|
46
|
+
|
47
|
+
なので、条件が誤っていると思われます。
|