Advertisement
popov-aa

Untitled

Nov 4th, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE TABLE postgres.newtable (
  2.     column1 varchar NULL
  3. );
  4. INSERT INTO postgres.newtable
  5. (column1)
  6. VALUES('test');
  7. INSERT INTO postgres.newtable
  8. (column1)
  9. VALUES('test');
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement