Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INSERT INTO public.t1
- (id, "name")
- VALUES(0, 'name11111111111');
- SELECT id, "name"
- FROM public.t1;
- -- public.t1 definition
- -- Drop table
- -- DROP TABLE public.t1;
- CREATE TABLE public.t1 (
- id int8 NOT NULL,
- "name" varchar NULL
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement