質問編集履歴

1

create table、insert tableのダブルクォーテーションを外しました

2021/08/01 06:22

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -36,21 +36,21 @@
36
36
 
37
37
  //データを取得するテーブル
38
38
 
39
- CREATE TABLE "manager" (
39
+ CREATE TABLE manager (
40
-
40
+
41
- "id" text,
41
+ id text,
42
-
42
+
43
- "first_name" text,
43
+ first_name text,
44
-
44
+
45
- "age" numeric,
45
+ age numeric,
46
-
46
+
47
- "tel" text
47
+ tel text
48
48
 
49
49
  );
50
50
 
51
51
 
52
52
 
53
- INSERT INTO "manager" ("id", "first_name", "age", "tel") VALUES
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 "public"."test" (
63
+ CREATE TABLE test (
64
-
64
+
65
- "test1" text,
65
+ test1 text,
66
-
66
+
67
- "test2" text,
67
+ test2 text,
68
-
68
+
69
- "test_num" numeric,
69
+ test_num numeric,
70
-
70
+
71
- "test4" text
71
+ test4 text
72
72
 
73
73
  );
74
74