質問編集履歴

1

テーブル定義追加

2022/03/14 03:57

投稿

oshey
oshey

スコア13

test CHANGED
File without changes
test CHANGED
@@ -9,6 +9,14 @@
9
9
  select convert(col1_var,'utf-8','shift-jis')
10
10
  from test_table
11
11
 
12
+ ■テーブル定義
13
+ create table test_table (
14
+ col1_var character varying(100)
15
+ , col2_dec numeric
16
+ , col3_var character varying(100)
17
+ , col4 timestamp(6) without time zone
18
+ );
19
+
12
20
  PosgreSQLのバージョンは13です。
13
21
 
14
22