Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. create table json_test (
  2. my_data jsonb);
  3.  
  4. {"details": [
  5. {
  6. "f1": "",
  7. "f2": "free text"
  8. },
  9. {
  10. "f1": "",
  11. "f2": "free text"
  12. }
  13. ]}
  14.  
  15. {"details": [
  16. {
  17. **"f1": null,**
  18. "f2": "free text"
  19. },
  20. {
  21. **"f1": null,**
  22. "f2": "free text"
  23. }
  24. ]}
Add Comment
Please, Sign In to add comment