You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
362 B
13 lines
362 B
CREATE TABLE IF NOT EXISTS public.aw_ppils
|
|
(
|
|
"KODS" integer NOT NULL,
|
|
"PPILS" text COLLATE pg_catalog."default",
|
|
CONSTRAINT "AW_PPILS_pkey" PRIMARY KEY ("KODS")
|
|
)
|
|
|
|
TABLESPACE pg_default;
|
|
|
|
ALTER TABLE IF EXISTS public.aw_ppils
|
|
OWNER to augusts;
|
|
|
|
COPY aw_ppils FROM '/home/augusts/darbs/AW_PPILS.CSV' DELIMITER ';' CSV HEADER QUOTE '#';
|