質問編集履歴
1
create table、insert tableのダブルクォーテーションを外しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,21 +36,21 @@
|
|
36
36
|
|
37
37
|
//データを取得するテーブル
|
38
38
|
|
39
|
-
CREATE TABLE
|
39
|
+
CREATE TABLE manager (
|
40
|
-
|
40
|
+
|
41
|
-
|
41
|
+
id text,
|
42
|
-
|
42
|
+
|
43
|
-
|
43
|
+
first_name text,
|
44
|
-
|
44
|
+
|
45
|
-
|
45
|
+
age numeric,
|
46
|
-
|
46
|
+
|
47
|
-
|
47
|
+
tel text
|
48
48
|
|
49
49
|
);
|
50
50
|
|
51
51
|
|
52
52
|
|
53
|
-
INSERT INTO
|
53
|
+
INSERT INTO manager (id, first_name, age, tel) VALUES
|
54
54
|
|
55
55
|
('1', '名字', 30, '090-9999-9999');
|
56
56
|
|
@@ -60,15 +60,15 @@
|
|
60
60
|
|
61
61
|
//データを登録するテーブル
|
62
62
|
|
63
|
-
CREATE TABLE
|
63
|
+
CREATE TABLE test (
|
64
|
-
|
64
|
+
|
65
|
-
|
65
|
+
test1 text,
|
66
|
-
|
66
|
+
|
67
|
-
|
67
|
+
test2 text,
|
68
|
-
|
68
|
+
|
69
|
-
|
69
|
+
test_num numeric,
|
70
|
-
|
70
|
+
|
71
|
-
|
71
|
+
test4 text
|
72
72
|
|
73
73
|
);
|
74
74
|
|