We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e39c0 commit 9d9000bCopy full SHA for 9d9000b
schema/schema.sql
@@ -76,6 +76,11 @@ CREATE TABLE "public"."title" (
76
CONSTRAINT "title_emp_no_fkey" FOREIGN KEY ("emp_no") REFERENCES "public"."employee" ("emp_no") ON DELETE CASCADE
77
);
78
79
+CREATE TABLE "public"."test_singpass" (
80
+ "id" integer PRIMARY KEY,
81
+ "name" text NOT NULL
82
+);
83
+
84
CREATE VIEW "public"."current_dept_emp" AS SELECT l.emp_no,
85
d.dept_no,
86
l.from_date,
0 commit comments