Advertisement
sergAccount

Untitled

Mar 28th, 2021
908
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.25 KB | None | 0 0
  1.  
  2. INSERT INTO public.t1
  3. (id, "name")
  4. VALUES(0, 'name11111111111');
  5.  
  6.  
  7. SELECT id, "name"
  8. FROM public.t1;
  9.  
  10.  
  11.  
  12. -- public.t1 definition
  13.  
  14. -- Drop table
  15.  
  16. -- DROP TABLE public.t1;
  17.  
  18. CREATE TABLE public.t1 (
  19.     id int8 NOT NULL,
  20.     "name" varchar NULL
  21. );
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement