質問編集履歴
1
テーブル定義を追記。
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,4 +4,21 @@
|
|
4
4
|
実行したクエリ↓
|
5
5
|
select * from table where update_datetime = '20200511';
|
6
6
|
|
7
|
-
ご教授お願いします。
|
7
|
+
ご教授お願いします。
|
8
|
+
|
9
|
+
※追記依頼が届いたため追記
|
10
|
+
|
11
|
+
テーブル定義は下記の通りです。
|
12
|
+
CREATE TABLE table
|
13
|
+
(
|
14
|
+
id bigint
|
15
|
+
type character varying(5)
|
16
|
+
version integer
|
17
|
+
create_datetime timestamp without time zone
|
18
|
+
create_user_id character varying(10)
|
19
|
+
update_datetime timestamp without time zone
|
20
|
+
update_user_id character varying(10)
|
21
|
+
);
|
22
|
+
|
23
|
+
A5:SQLを用いてクエリを実行しているのですが、クエリ自体にエラーはなく実行されます。
|
24
|
+
なので、条件が誤っていると思われます。
|