Guest User

Untitled

a guest
Jun 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. CREATE TABLE foo (man_id,subgroup,power,grp)
  2. AS VALUES
  3. ( 1, 'sub_A', 'positive', 'Group_A' ); -- that's a tab.
  4.  
  5. CREATE TABLE foo (man_id,subgroup,power,grp)
  6. AS VALUES
  7. ( 1, 'sub_A', 'positive', 'Group_A' );
  8.  
  9. test=# CREATE TABLE foo (man_id,subgroup,power,grp)
  10. test-# AS VALUES
  11. test-# ( ( 1, 'sub_A', 'positive', 'Group_A' );
  12. test(#
  13.  
  14. test(# )
  15. test-# ;
  16. ERROR: syntax error at or near "test"
  17. LINE 1: test=# CREATE TABLE foo (man_id,subgroup,power,grp)
  18.  
  19. ^
Add Comment
Please, Sign In to add comment