node-query/test/sql/pgsql.sql

17 lines
331 B
MySQL
Raw Normal View History

2014-10-23 10:53:16 -04:00
-- sample data to test PostgreSQL INFORMATION_SCHEMA
2016-07-20 17:58:34 -04:00
DROP TABLE IF EXISTS "create_join" CASCADE;
DROP TABLE IF EXISTS "create_test" CASCADE;
2014-10-23 10:53:16 -04:00
-- Table create_join
2016-07-20 17:58:34 -04:00
CREATE TABLE "create_join" (
id integer NOT NULL,
key text,
val text
);
2016-07-20 17:58:34 -04:00
CREATE TABLE "create_test" (
id integer NOT NULL,
key text,
val text
)