Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. INSERT INTO messages_tbl
  2. (message_id,
  3. chat_channel,
  4. user_type,
  5. message_type,
  6. message_custom_type,
  7. msg_created_on)
  8. VALUES ('00001',
  9. 'chat_1',
  10. 'consumer',
  11. 'msg',
  12. 'example message',
  13. '2018-09-27 10:14:42');
  14.  
  15. INSERT INTO messages_tbl
  16. (message_id,
  17. chat_channel,
  18. user_type,
  19. message_type,
  20. message_custom_type,
  21. msg_created_on)
  22. VALUES ('00002',
  23. 'chat_1',
  24. 'merchant',
  25. 'msg',
  26. 'example message',
  27. '2018-09-27 11:14:42');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement